1
vote
4answers
480 views
SetCursor reverts after a mouse move
I am using SetCursor to set the system cursor to my own image. The code looks something like this:
// member on some class
HCURSOR _cursor;
// at init time
_cursor = LoadCursorFrom …
1
vote
SetCursor reverts after a mouse move
It seems that I have two options. The first is the one that Mark Ransom suggested here, which is to respond to the windows WM_SETCURSOR message and call SetCursor at that time based on …
