mirror of
https://github.com/vim/vim.git
synced 2025-11-14 23:04:02 -05:00
patch 9.1.1370: CI Tests favor GTK2 over GTK3
Problem: CI Tests favor GTK2 over GTK3
Solution: Install GTK3 dependencies and debug packages for CI workflows,
update ASAN suppression list, update required dependency
checks for the tests (Drew Vogel)
closes: #17253
Signed-off-by: Drew Vogel <dvogel@github>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
9670f61d46
commit
ea67ba718d
@@ -4531,11 +4531,14 @@ gui_mch_open(void)
|
||||
|
||||
pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
|
||||
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
|
||||
// resizing.
|
||||
if (gtk_socket_id == 0)
|
||||
gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
|
||||
update_window_manager_hints(0, 0);
|
||||
# endif
|
||||
|
||||
if (foreground_argument != NULL)
|
||||
fg_pixel = gui_get_color((char_u *)foreground_argument);
|
||||
|
||||
Reference in New Issue
Block a user