Remove unnecessary WM_SETCURSOR handling from wf_event_proc

This commit is contained in:
Eric Brown 2018-03-05 12:32:42 -06:00
parent 0c24ade668
commit d8151c03df
1 changed files with 0 additions and 8 deletions

View File

@ -566,14 +566,6 @@ LRESULT CALLBACK wf_event_proc(HWND hWnd, UINT Msg, WPARAM wParam,
PostQuitMessage(WM_QUIT);
break;
case WM_SETCURSOR:
if (wfc && LOWORD(lParam) == HTCLIENT)
SetCursor(wfc->hDefaultCursor);
else
DefWindowProc(hWnd, Msg, wParam, lParam);
break;
case WM_SETFOCUS:
DEBUG_KBD("getting focus %X", hWnd);