summaryrefslogtreecommitdiffstats
path: root/src/gui_gtk_x11.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-05-16 22:15:51 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-16 22:15:51 +0100
commitc0da540466c89e388e7a15a12bab2f9fc42d9671 (patch)
treea396fca741f1240901644ba1bca6924b9e561b1a /src/gui_gtk_x11.c
parent7268e539968de227d49ffc66adb79e558502743e (diff)
patch 9.0.1563: GTK3: window manager resize hints are incompletev9.0.1563
Problem: GTK3: window manager resize hints are incomplete. Solution: Use NULL for second argument of gtk_window_set_geometry_hints(). (Kenny Stauffer closes #11055)
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r--src/gui_gtk_x11.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index fc3d08b42c..1f8b2ebcc7 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -3121,8 +3121,10 @@ update_window_manager_hints(int force_width, int force_height)
|GDK_HINT_MIN_SIZE;
// Using gui.formwin as geometry widget doesn't work as expected
// with GTK+ 2 -- dunno why. Presumably all the resizing hacks
- // in Vim confuse GTK+.
- gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
+ // in Vim confuse GTK+. For GTK 3 the second argument should be NULL
+ // to make the width/height inc works, despite the docs saying
+ // something else.
+ gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), NULL,
&geometry, geometry_mask);
old_width = width;
old_height = height;