summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-07-03 16:58:44 +0200
committerBram Moolenaar <Bram@vim.org>2013-07-03 16:58:44 +0200
commit8968a31179c8142cc4ccc2f27cf09e03135c35c7 (patch)
tree47325ac003ada940633b509401e02fdaa43ccb6d
parentf4e1143697a2d08eff487dec36128a5e10d5eca8 (diff)
downloadvim-git-8968a31179c8142cc4ccc2f27cf09e03135c35c7.tar.gz
updated for version 7.3.1296v7.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)
-rw-r--r--src/ui.c8
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 7 deletions
diff --git a/src/ui.c b/src/ui.c
index 714d1938b..89ab747da 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 d73556773..e06aa6a62 100644
--- 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,