Skip to content
Snippets Groups Projects
Commit 2787ab91 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

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)
parent 68dfcdf7
No related merge requests found
......@@ -1101,7 +1101,7 @@ _WndProc(
return MyWindowProc(hwnd, uMsg, wParam, lParam);
}
return 1;
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
/*
......
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
376,
/**/
375,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment