Skip to content

Commit 7ebba3d

Browse files
committed
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)
1 parent 1c56689 commit 7ebba3d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/ui.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,7 @@ ui_set_shellsize(mustset)
326326
{
327327
#ifdef FEAT_GUI
328328
if (gui.in_use)
329-
gui_set_shellsize(mustset,
330-
# ifdef WIN3264
331-
TRUE
332-
# else
333-
FALSE
334-
# endif
335-
, RESIZE_BOTH);
329+
gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
336330
else
337331
#endif
338332
mch_set_shellsize();

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1296,
731733
/**/
732734
1295,
733735
/**/

0 commit comments

Comments
 (0)