commit | 0f2721223e5b97ac250d729b2359471241a3ab7d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 23 18:37:40 2013 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 23 18:37:40 2013 +0100 |
tree | 0355c81415f413a46efac2f65f6aecb3a68aa2cf | |
parent | 459339662566bcf5ae9892c7dabb9518e7f70f83 [diff] [blame] |
updated for version 7.3.782 Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
diff --git a/src/gui.c b/src/gui.c index 1470655..6e5d58b 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -1002,6 +1002,9 @@ else #endif gui.wide_font = font; +#ifdef FEAT_GUI_MSWIN + gui_mch_wide_font_changed(); +#endif return OK; } #endif