comparison src/gui.c @ 3923:6a76846b84eb v7.3.717

updated for version 7.3.717 Problem: When changing the font size, only MS-Windows limits the window size. Solution: Also limit the window size on other systems. (Roland Puntaier)
author Bram Moolenaar <bram@vim.org>
date Tue, 20 Nov 2012 12:03:06 +0100
parents fb7c028dcac7
children 29f29e86602e
comparison
equal deleted inserted replaced
3922:5c4bab83ebae 3923:6a76846b84eb
903 gui_mch_set_fontset(gui.fontset); 903 gui_mch_set_fontset(gui.fontset);
904 else 904 else
905 # endif 905 # endif
906 gui_mch_set_font(gui.norm_font); 906 gui_mch_set_font(gui.norm_font);
907 #endif 907 #endif
908 gui_set_shellsize(FALSE, 908 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
909 #ifdef MSWIN
910 TRUE
911 #else
912 FALSE
913 #endif
914 , RESIZE_BOTH);
915 } 909 }
916 910
917 return ret; 911 return ret;
918 } 912 }
919 913