summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-10-27 12:15:33 +0200
committerBram Moolenaar <Bram@vim.org>2010-10-27 12:15:33 +0200
commit786989ba370724dd61bb8157769f26d988c6eaed (patch)
tree48d537efba771eb9614edd58927a8088ab616767 /src/gui_w32.c
parent8bbe993c79023261d83931dd9effc7caf19bf659 (diff)
downloadvim-git-786989ba370724dd61bb8157769f26d988c6eaed.tar.gz
updated for version 7.3.036v7.3.036
Problem: Win32 GUI: When building without menus, the font for dialogs and tab page headers also changes. Solution: Define USE_SYSMENU_FONT always. (Harig G.)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index d1335a22b..507142341 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -289,13 +289,13 @@ typedef struct tagNMTTDISPINFOW {
#ifdef FEAT_MENU
static UINT s_menu_id = 100;
+#endif
/*
* Use the system font for dialogs and tear-off menus. Remove this line to
* use DLG_FONT_NAME.
*/
-# define USE_SYSMENU_FONT
-#endif
+#define USE_SYSMENU_FONT
#define VIM_NAME "vim"
#define VIM_CLASS "Vim"