updated for version 7.4.035
Problem: MS-Windows: The mouse pointer flickers when going from command
line mode to Normal mode.
Solution: Check for WM_NCMOUSEMOVE. (Ken Takata)
diff --git a/src/gui_w48.c b/src/gui_w48.c
index 345d4da..d8ffc15 100644
--- a/src/gui_w48.c
+++ b/src/gui_w48.c
@@ -1008,7 +1008,7 @@
static LPARAM last_lParam = 0L;
/* We sometimes get a mousemove when the mouse didn't move... */
- if (uMsg == WM_MOUSEMOVE)
+ if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE)
{
if (lParam == last_lParam)
return;