diff src/ui.c @ 5106:c3a82208e143 v7.3.1296

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)
author Bram Moolenaar <bram@vim.org>
date Wed, 03 Jul 2013 16:58:44 +0200
parents 5e0b6a9282df
children 28e6f5f88968
line wrap: on
line diff
--- 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();