# HG changeset patch # User Bram Moolenaar # Date 1372863524 -7200 # Node ID c3a82208e143e4cd4a3b9d9b1716eb9d876bf462 # Parent 4050be5a5a1c1d49282a1c374243e1c130659ef5 updated for version 7.3.1296 Problem: Only MS-Windows limits the GUI window size to what fits on the monitor. Solution: Limit the size for all systems. (Daniel Harding) diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -326,13 +326,7 @@ ui_set_shellsize(mustset) { #ifdef FEAT_GUI if (gui.in_use) - gui_set_shellsize(mustset, -# ifdef WIN3264 - TRUE -# else - FALSE -# endif - , RESIZE_BOTH); + gui_set_shellsize(mustset, TRUE, RESIZE_BOTH); else #endif mch_set_shellsize(); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1296, +/**/ 1295, /**/ 1294,