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>
This commit is contained in:
Linus Torvalds 2011-08-31 11:52:16 -07:00
parent 6cc122f491
commit 7017d17562
2 changed files with 10 additions and 9 deletions

View file

@ -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);