From: jacob Date: Thu, 6 Nov 2003 14:17:56 +0000 (+0000) Subject: Cosmetic fix from Daniel Fazekas: apparently we were failing to allow X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/f9cbc48c056b8be315cda91395089eb7f76d4943?ds=sidebyside Cosmetic fix from Daniel Fazekas: apparently we were failing to allow window-furniture in Playschool Windows be animated on mouse-over. This fix also seems like the Right Thing to do. I've tried it and it seems harmless enough on Win2K. git-svn-id: svn://svn.tartarus.org/sgt/putty@3536 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/window.c b/window.c index 5174b46f..35df36ac 100644 --- a/window.c +++ b/window.c @@ -2087,7 +2087,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, case WM_NCMOUSEMOVE: show_mouseptr(1); noise_ultralight(lParam); - return 0; + break; case WM_IGNORE_CLIP: ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */ break;