]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Accept a smaller profile window
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 11 Sep 2011 23:21:21 +0000 (16:21 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 11 Sep 2011 23:21:21 +0000 (16:21 -0700)
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 <torvalds@linux-foundation.org>
profile.c

index 270a04177e6957ad7e5dc1bb53724e7fb322f4d7..1912690ce2b2021fbe25957eff294a086c5c2999 100644 (file)
--- 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;