]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.035 v7.4.035
authorBram Moolenaar <Bram@vim.org>
Sun, 22 Sep 2013 13:43:37 +0000 (15:43 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 22 Sep 2013 13:43:37 +0000 (15:43 +0200)
Problem:    MS-Windows: The mouse pointer flickers when going from command
            line mode to Normal mode.
Solution:   Check for WM_NCMOUSEMOVE. (Ken Takata)

src/gui_w48.c
src/version.c

index 345d4da97ae8e6e98ca6e0946a2f424e648f26eb..d8ffc1529212e7733061170481857c5455cd6fa7 100644 (file)
@@ -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;
index ab6c3c17c03250107ef01694055d371944e1d02c..9c99f7b06660cd2bee0d57efec87c147aa0e5edf 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    35,
 /**/
     34,
 /**/