diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-02-06 16:33:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-02-06 16:33:58 +0000 |
commit | 6f7743ef824f17e9f0757083020c496d7d1ad77a (patch) | |
tree | 0aadb6a0ac376b9081626ddf2f41c76c3c4b8662 /src/gui.c | |
parent | e60c58d965d27b37e03ae1b4e73ca39be89dc4f5 (diff) | |
download | vim-git-6f7743ef824f17e9f0757083020c496d7d1ad77a.tar.gz |
updated for version 7.1-244v7.1.244
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1294,11 +1294,7 @@ again: out_flush(); gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width; - gui.num_rows = (pixel_height - gui_get_base_height() -#if !defined(FEAT_GUI_PHOTON) && !defined(FEAT_GUI_MSWIN) - + (gui.char_height / 2) -#endif - ) / gui.char_height; + gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height; gui_position_components(pixel_width); |