summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-12-14 15:23:59 +0100
committerBram Moolenaar <bram@vim.org>2011-12-14 15:23:59 +0100
commit3694eec1bced3829afa967829edd69aec888e223 (patch)
treea6b4978626512d009f2ed52ee3aeeb5a1318ebc5
parent73c269375794f9a916853a0f30cb2291fa2183e2 (diff)
downloadvim-3694eec1bced3829afa967829edd69aec888e223.tar.gz
updated for version 7.3.376v7.3.376v7-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)
-rw-r--r--src/gui_w32.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 4a34cb4f..c36f73d3 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -1101,7 +1101,7 @@ _WndProc(
return MyWindowProc(hwnd, uMsg, wParam, lParam);
}
- return 1;
+ return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
/*
diff --git a/src/version.c b/src/version.c
index e1dd4951..258a29f6 100644
--- 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,