diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-17 22:43:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-17 22:43:25 +0200 |
commit | db250526bbeac519665605127c18aad3ce2853ed (patch) | |
tree | 22369db9eb74104fa9c58b3d5ae8a9c01a10c8e4 /src/gui.h | |
parent | a0c85c7ae1be04bcf5850fc88e5e42ab96b518a2 (diff) | |
download | vim-git-db250526bbeac519665605127c18aad3ce2853ed.tar.gz |
updated for version 7.3.1220v7.3.1220
Problem: MS-Windows: When using wide font italic and bold are not included.
Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata,
Taro Muraoka)
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -311,7 +311,12 @@ typedef struct Gui # endif #endif #ifdef FEAT_MBYTE - GuiFont wide_font; /* 'guifontwide' font */ + GuiFont wide_font; /* Normal 'guifontwide' font */ +# ifndef FEAT_GUI_GTK + GuiFont wide_bold_font; /* Bold 'guifontwide' font */ + GuiFont wide_ital_font; /* Italic 'guifontwide' font */ + GuiFont wide_boldital_font; /* Bold-Italic 'guifontwide' font */ +# endif #endif #ifdef FEAT_XFONTSET GuiFontset fontset; /* set of fonts for multi-byte chars */ |