From: Bram Moolenaar Date: Sat, 22 Dec 2018 17:44:53 +0000 (+0100) Subject: patch 8.1.0626: MS-Windows: no resize to fit parent when using --windowid X-Git-Tag: v8.1.0626 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4814ccbdf0e99e2d33e1ac926c59f677f5c2afe2;p=vim patch 8.1.0626: MS-Windows: no resize to fit parent when using --windowid Problem: MS-Windows: no resize to fit parent when using --windowid. Solution: Pass FALSE for "mustset" in gui_set_shellsize(). (Agorgianitis Loukas, closes #3616) --- diff --git a/src/gui.c b/src/gui.c index 9160848c8..0b911b314 100644 --- a/src/gui.c +++ b/src/gui.c @@ -687,9 +687,10 @@ gui_init(void) gui.shell_created = TRUE; #ifndef FEAT_GUI_GTK - /* Set the shell size, adjusted for the screen size. For GTK this only - * works after the shell has been opened, thus it is further down. */ - gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH); + // Set the shell size, adjusted for the screen size. For GTK this only + // works after the shell has been opened, thus it is further down. + // For MS-Windows pass FALSE for "mustset" to make --windowid work. + gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH); #endif #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU) /* Need to set the size of the menubar after all the menus have been diff --git a/src/version.c b/src/version.c index 594be524d..4d39dde9d 100644 --- a/src/version.c +++ b/src/version.c @@ -799,6 +799,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 626, /**/ 625, /**/