mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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)
This commit is contained in:
8
src/ui.c
8
src/ui.c
@@ -326,13 +326,7 @@ ui_set_shellsize(mustset)
|
|||||||
{
|
{
|
||||||
#ifdef FEAT_GUI
|
#ifdef FEAT_GUI
|
||||||
if (gui.in_use)
|
if (gui.in_use)
|
||||||
gui_set_shellsize(mustset,
|
gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
|
||||||
# ifdef WIN3264
|
|
||||||
TRUE
|
|
||||||
# else
|
|
||||||
FALSE
|
|
||||||
# endif
|
|
||||||
, RESIZE_BOTH);
|
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
mch_set_shellsize();
|
mch_set_shellsize();
|
||||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1296,
|
||||||
/**/
|
/**/
|
||||||
1295,
|
1295,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user