1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Fix problem with pointer hiding

[originally from svn r964]
This commit is contained in:
Simon Tatham 2001-03-02 09:25:14 +00:00
parent b6255788ca
commit 5f0d3bd19d

View File

@ -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;