do not call SetCursor in handling low level events

This commit is contained in:
Vincent Wei
2020-02-27 09:59:14 +08:00
parent 40628a7fbe
commit f005efe2e5
+2 -1
View File
@@ -140,7 +140,8 @@ static void ParseEvent (PMSGQUEUE msg_que, int event)
switch (me->event) {
case ME_MOVED:
Msg.message = MSG_MOUSEMOVE;
SetCursor (GetSystemCursor (IDC_ARROW));
/* Since 5.0.0, do not call SetCursor here. */
//SetCursor (GetSystemCursor (IDC_ARROW));
break;
case ME_LEFTDOWN:
Msg.message = MSG_LBUTTONDOWN;