From: jacob Date: Sat, 3 Mar 2007 22:39:17 +0000 (+0000) Subject: Ben Hutchings' patch to allow Gtk windows to be shrunk as well as grown X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/commitdiff_plain/8b629657bab226e6a0f91d4f147d448b4c84be2f Ben Hutchings' patch to allow Gtk windows to be shrunk as well as grown (from Debian bug#379452). Tested on Gtk 2. I've been unable to find a Gtk+-1.2 installation on which Puzzles compiles, so not tested there. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@7367 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/gtk.c b/gtk.c index 30389e9..c7713a1 100644 --- a/gtk.c +++ b/gtk.c @@ -1113,6 +1113,12 @@ static void resize_fe(frontend *fe) gtk_widget_size_request(GTK_WIDGET(fe->window), &req); gtk_window_resize(GTK_WINDOW(fe->window), req.width, req.height); } + /* + * Now that we've established the preferred size of the window, + * reduce the drawing area's size request so the user can shrink + * the window. + */ + gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), 1, 1); } static void menu_preset_event(GtkMenuItem *menuitem, gpointer data) @@ -1756,6 +1762,13 @@ static frontend *new_window(char *arg, int argtype, char **error) gtk_widget_show(fe->area); gtk_widget_show(fe->window); + /* + * Now that we've established the preferred size of the window, + * reduce the drawing area's size request so the user can shrink + * the window. + */ + gtk_drawing_area_size(GTK_DRAWING_AREA(fe->area), 1, 1); + gdk_window_set_background(fe->area->window, &fe->colours[0]); gdk_window_set_background(fe->window->window, &fe->colours[0]);