diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-11 16:21:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-11 16:21:21 -0700 |
commit | 15474135b1629c5615c90898df266079fb637354 (patch) | |
tree | be17cb754fbc4a48fdd5ad9672102b69c829bb57 /profile.c | |
parent | 9d960c1845ef069a76e58520dfe6f9042b4eb42e (diff) | |
download | subsurface-15474135b1629c5615c90898df266079fb637354.tar.gz |
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 <torvalds@linux-foundation.org>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |