Skip to content

Commit 6c7a282

Browse files
committed
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)
1 parent 6c8e827 commit 6c7a282

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/gui_w48.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ HandleMouseHide(UINT uMsg, LPARAM lParam)
10081008
static LPARAM last_lParam = 0L;
10091009

10101010
/* We sometimes get a mousemove when the mouse didn't move... */
1011-
if (uMsg == WM_MOUSEMOVE)
1011+
if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE)
10121012
{
10131013
if (lParam == last_lParam)
10141014
return;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
35,
741743
/**/
742744
34,
743745
/**/

0 commit comments

Comments
 (0)