Skip to content

Commit 743874d

Browse files
committed
updated for version 7.3.376
Problem: Win32: Toolbar repainting does not work when the mouse pointer hovers over a button. Solution: Call DefWindowProc() when not hanlding an event. (Sergiu Dotenco)
1 parent e4aa280 commit 743874d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/gui_w32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ _WndProc(
11011101
return MyWindowProc(hwnd, uMsg, wParam, lParam);
11021102
}
11031103

1104-
return 1;
1104+
return DefWindowProc(hwnd, uMsg, wParam, lParam);
11051105
}
11061106

11071107
/*

src/version.c

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

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
376,
717719
/**/
718720
375,
719721
/**/

0 commit comments

Comments
 (0)