From: jacob Date: Sun, 26 Jun 2005 12:54:08 +0000 (+0000) Subject: Under Gtk 1.2 (at least on Debian woody), a config or preset change that would X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/commitdiff_plain/4e1f57ba31665f1d681ecd245bdc74b8c6942cf4 Under Gtk 1.2 (at least on Debian woody), a config or preset change that would otherwise not cause the window size to change caused it to become very small indeed. This change from Simon fixes that behaviour; I haven't tested it with Gtk 2. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6022 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/gtk.c b/gtk.c index 4b789cb..9b95d48 100644 --- a/gtk.c +++ b/gtk.c @@ -998,7 +998,11 @@ static void menu_preset_event(GtkMenuItem *menuitem, gpointer data) fe->w = x; fe->h = y; gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), x, y); - gtk_window_resize(GTK_WINDOW(fe->window), 1, 1); + { + GtkRequisition req; + gtk_widget_size_request(GTK_WIDGET(fe->window), &req); + gtk_window_resize(GTK_WIDGET(fe->window), req.width, req.height); + } } GdkAtom compound_text_atom, utf8_string_atom; @@ -1143,7 +1147,11 @@ static void menu_config_event(GtkMenuItem *menuitem, gpointer data) fe->w = x; fe->h = y; gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), x, y); - gtk_window_resize(GTK_WINDOW(fe->window), 1, 1); + { + GtkRequisition req; + gtk_widget_size_request(GTK_WIDGET(fe->window), &req); + gtk_window_resize(GTK_WIDGET(fe->window), req.width, req.height); + } } static void menu_about_event(GtkMenuItem *menuitem, gpointer data)