From e1ecb1c61ed4aea5a4faf29dce24d6b1501faca4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 7 Sep 2001 22:43:31 +0000 Subject: [PATCH] Patch from RDB: fix the failure to display window-resize pointers when in raw mouse mode. [originally from svn r1241] --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 378634f9..f0973595 100644 --- a/window.c +++ b/window.c @@ -1961,7 +1961,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, } return 0; case WM_SETCURSOR: - if (send_raw_mouse) { + if (send_raw_mouse && LOWORD(lParam) == HTCLIENT) { SetCursor(LoadCursor(NULL, IDC_ARROW)); return TRUE; }