From: Linus Torvalds Date: Sun, 11 Sep 2011 23:21:21 +0000 (-0700) Subject: Accept a smaller profile window X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=15474135b1629c5615c90898df266079fb637354;p=ext%2Fsubsurface.git Accept a smaller profile window I'm trying to make sure that we can shrink the main window and still get a useful experience. Sometimes you have small bad netbooks when diving.. Signed-off-by: Linus Torvalds --- diff --git a/profile.c b/profile.c index 270a041..1912690 100644 --- a/profile.c +++ b/profile.c @@ -627,7 +627,7 @@ GtkWidget *dive_profile_widget(void) GtkWidget *da; da = gtk_drawing_area_new(); - gtk_widget_set_size_request(da, 450, 350); + gtk_widget_set_size_request(da, 350, 250); g_signal_connect(da, "expose_event", G_CALLBACK(expose_event), NULL); return da;