From a9e286ad570e72c428eed56159be0fbd8d341bc3 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Thu, 6 Nov 2003 14:17:56 +0000 Subject: [PATCH] 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. [originally from svn r3536] --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;