comparison src/gui_w32.c @ 2614:56ecdb792c33 v7.3.036

updated for version 7.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.)
author Bram Moolenaar <bram@vim.org>
date Wed, 27 Oct 2010 12:15:33 +0200
parents fa5dee44df3f
children 73d947c20291
comparison
equal deleted inserted replaced
2613:8fdc12103333 2614:56ecdb792c33
287 287
288 /* Local variables: */ 288 /* Local variables: */
289 289
290 #ifdef FEAT_MENU 290 #ifdef FEAT_MENU
291 static UINT s_menu_id = 100; 291 static UINT s_menu_id = 100;
292 #endif
292 293
293 /* 294 /*
294 * Use the system font for dialogs and tear-off menus. Remove this line to 295 * Use the system font for dialogs and tear-off menus. Remove this line to
295 * use DLG_FONT_NAME. 296 * use DLG_FONT_NAME.
296 */ 297 */
297 # define USE_SYSMENU_FONT 298 #define USE_SYSMENU_FONT
298 #endif
299 299
300 #define VIM_NAME "vim" 300 #define VIM_NAME "vim"
301 #define VIM_CLASS "Vim" 301 #define VIM_CLASS "Vim"
302 #define VIM_CLASSW L"Vim" 302 #define VIM_CLASSW L"Vim"
303 303