From ca3ab3ee9072553bd4774ac677e66597a95c4dc5 Mon Sep 17 00:00:00 2001 From: simon 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. git-svn-id: svn://svn.tartarus.org/sgt/putty@1241 cda61777-01e9-0310-a592-d414129be87e --- 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; } -- 2.11.0