From: simon Date: Fri, 2 Mar 2001 09:25:14 +0000 (+0000) Subject: Fix problem with pointer hiding X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/d318ef8e04c5093c0a027a42ae0da3f6df79d368 Fix problem with pointer hiding git-svn-id: svn://svn.tartarus.org/sgt/putty@964 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/window.c b/window.c index cdc58dc3..a54d507c 100644 --- a/window.c +++ b/window.c @@ -1396,6 +1396,10 @@ static LRESULT CALLBACK WndProc (HWND hwnd, UINT message, TO_CHR_Y(Y_POS(lParam))); } return 0; + case WM_NCMOUSEMOVE: + show_mouseptr(1); + noise_ultralight(lParam); + return 0; case WM_IGNORE_CLIP: ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */ break;