diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-12-24 10:35:24 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-12-24 10:35:24 +0000 |
commit | f26fab360eb3c3d004db6128f43e1c1ba1feef4f (patch) | |
tree | 76eabdc2975f3a3f47b4cf2292a2deadc80562dd /src/gtkutil.c | |
parent | 5202d23dfe53de7a113c0d05561ad34a8a770715 (diff) | |
download | emacs-f26fab360eb3c3d004db6128f43e1c1ba1feef4f.tar.gz |
* gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
Diffstat (limited to 'src/gtkutil.c')
-rw-r--r-- | src/gtkutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 4fc3351ab7e..4d0b50573f7 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -515,7 +515,7 @@ xg_frame_set_char_size (f, cols, rows) gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), pixelwidth, pixelheight); xg_resize_widgets (f, pixelwidth, pixelheight); - + x_wm_set_size_hint (f, 0, 0); SET_FRAME_GARBAGED (f); cancel_mouse_face (f); } |