From: Christian Dywan Date: Sat, 17 Dec 2011 10:18:01 +0000 (+0100) Subject: Set appropximate minimum size on inspector X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=568461c6c53eafc7130825dd544fc80a9d8f5605;p=midori Set appropximate minimum size on inspector Fixes: https://bugs.launchpad.net/midori/+bug/867582 --- diff --git a/midori/midori-view.c b/midori/midori-view.c index c78c379c..2ff30bed 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -3433,6 +3433,8 @@ midori_view_web_inspector_construct_window (gpointer inspector, width = gdk_screen_get_width (screen) / 1.7; height = gdk_screen_get_height (screen) / 1.7; gtk_window_set_default_size (GTK_WINDOW (window), width, height); + /* 700x100 is the approximate useful minimum dimensions */ + gtk_widget_set_size_request (inspector_view, 700, 100); } /* Attempt to make a gray version of the icon on the fly */