summaryrefslogtreecommitdiffstats
path: root/divelist.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 11:52:16 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 11:52:16 -0700
commit7017d17562fe803946ef9e0d8e9af9611bc43ba5 (patch)
tree8d071959402e0bdd8d124d8ab2a5744668efbbd3 /divelist.c
parent6cc122f491ca9a069dbd226b9fe7529dbcf61058 (diff)
downloadsubsurface-7017d17562fe803946ef9e0d8e9af9611bc43ba5.tar.gz
Use a gtk table instead of hbox
We'll want to add various dive statistics, so... Without them, it all looks pretty much the same, though. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'divelist.c')
-rw-r--r--divelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/divelist.c b/divelist.c
index 3a38e9544..ba426588a 100644
--- a/divelist.c
+++ b/divelist.c
@@ -48,7 +48,7 @@ GtkWidget *create_dive_list(void)
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
- gtk_widget_set_size_request(tree_view, 200, -1);
+ gtk_widget_set_size_request(tree_view, 200, 100);
fill_dive_list(model);