# HG changeset patch # User Bram Moolenaar # Date 1379857417 -7200 # Node ID 5481f188dcbb7143596f2d470c7d674bf36efe64 # Parent e13fe8b20382b8601c3c5fcf8fe2636573cbbd7c 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 --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -1008,7 +1008,7 @@ HandleMouseHide(UINT uMsg, LPARAM lParam 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; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 35, +/**/ 34, /**/ 33,