mirror of
https://github.com/vim/vim.git
synced 2025-08-26 20:03:41 -04:00
patch 9.1.1377: patch v9.1.1370 causes some GTK warning messages
Problem: Some GTK3 users experienced unexpectedly small windows at startup (after v9.1.1368, @berggeist, Tony Mechelynck) Solution: Update window manager hints in gui_mch_open, partly revert v9.1.1370 (Drew Vogel) fixes: #17279 closes: #17288 Signed-off-by: Drew Vogel <dvogel@github> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
6b7637e6bb
commit
d8ebccbb10
@ -4532,13 +4532,11 @@ gui_mch_open(void)
|
|||||||
pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
|
pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
|
||||||
pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
|
pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
|
||||||
|
|
||||||
# if !GTK_CHECK_VERSION(3,0,0)
|
|
||||||
// For GTK2 changing the size of the form widget doesn't cause window
|
// For GTK2 changing the size of the form widget doesn't cause window
|
||||||
// resizing.
|
// resizing.
|
||||||
if (gtk_socket_id == 0)
|
if (gtk_socket_id == 0)
|
||||||
gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
|
gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
|
||||||
update_window_manager_hints(0, 0);
|
update_window_manager_hints(0, 0);
|
||||||
# endif
|
|
||||||
|
|
||||||
if (foreground_argument != NULL)
|
if (foreground_argument != NULL)
|
||||||
fg_pixel = gui_get_color((char_u *)foreground_argument);
|
fg_pixel = gui_get_color((char_u *)foreground_argument);
|
||||||
|
@ -704,6 +704,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 */
|
||||||
|
/**/
|
||||||
|
1377,
|
||||||
/**/
|
/**/
|
||||||
1376,
|
1376,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user