0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.3.643

Problem:    MS-Windows: When starting gvim maximized 'lines' and 'columns' are
            wrong. (Christian Robinson)
Solution:   Move the check for gui.starting from ui_get_shellsize() to
            check_shellsize().
This commit is contained in:
Bram Moolenaar
2012-08-29 16:26:04 +02:00
parent 8f91399366
commit 3633dc0129
3 changed files with 9 additions and 4 deletions

View File

@@ -298,9 +298,6 @@ ui_get_shellsize()
int retval;
#ifdef FEAT_GUI
if (gui.starting)
/* possibly a system call during startup, check later */
return OK;
if (gui.in_use)
retval = gui_get_shellsize();
else