From 7ebba3d4ced736cec4bbf74d4957a9d44662711d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 3 Jul 2013 16:58:44 +0200 Subject: [PATCH] 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) --- src/ui.c | 8 +------- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/ui.c b/src/ui.c index 714d1938b8..89ab747da2 100644 --- 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 index d735567737..e06aa6a623 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1296, /**/ 1295, /**/