# HG changeset patch # User Bram Moolenaar # Date 1353409386 -3600 # Node ID 6a76846b84eb0fe1220f8cfa19b1161145932d4d # Parent 5c4bab83ebae4fe444ebf130ef9f101d8d9f5213 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) diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -905,13 +905,7 @@ gui_init_font(font_list, fontset) # endif gui_mch_set_font(gui.norm_font); #endif - gui_set_shellsize(FALSE, -#ifdef MSWIN - TRUE -#else - FALSE -#endif - , RESIZE_BOTH); + gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); } return ret; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 717, +/**/ 716, /**/ 715,