mnabil
mnabil

Reputation: 745

Resizing Mouse Shape changed in MFC

I have ported my application to be built with Visual Studio 2013. After building it, I found that the resizing mouse shape is interchanged.

enter image description here

The first shape of mouse pointer appears when I want to resize a vertical splitter and the second one appears when I want to resize a horizontal splitter: this behavior is new. In the previous release of my tool, the first one appears when I want to resize a horizontal splitter and the second one appears when I want to resize a vertical splitter.

I didn't change anything in the code. How can I make it to reproduce the old behavior?

Upvotes: 1

Views: 180

Answers (1)

mnabil
mnabil

Reputation: 745

We found that we use a third party MFC libraries and we use the cursors from them; in the new release, they have swapped the names of the icons of the cursors and this is the root cause of this problem. As a workaround, we have swapped the names to give the old behavior.

Upvotes: 0

Related Questions