diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-09-22 15:43:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-09-22 15:43:37 +0200 |
commit | 268b55b5fbe68ca24020391c3c3055f71cff7277 (patch) | |
tree | c92730522f887cdcdb8b6fd01b266bf466506823 /src/gui_w48.c | |
parent | ec11aef914d3f1570c40e9795c145fffaf94edd4 (diff) | |
download | vim-git-268b55b5fbe68ca24020391c3c3055f71cff7277.tar.gz |
updated for version 7.4.035v7.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)
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r-- | src/gui_w48.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c index 345d4da97..d8ffc1529 100644 --- 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; |