# HG changeset patch # User Bram Moolenaar # Date 1323872639 -3600 # Node ID 1d7434010de186b02fd6a5c8eef3e28108a4a251 # Parent da22e28b94508b6a0e6ad3c3262918d5b1b423c5 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) diff --git a/src/gui_w32.c b/src/gui_w32.c --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1101,7 +1101,7 @@ set_tabline_font(void) return MyWindowProc(hwnd, uMsg, wParam, lParam); } - return 1; + return DefWindowProc(hwnd, uMsg, wParam, lParam); } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 376, +/**/ 375, /**/ 374,