Switch the dive list and dive profile panes around

It looks better this way, I think.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Linus Torvalds 2011-09-19 22:08:43 -07:00
parent d064044833
commit 6a9e951f1c

4
main.c
View file

@ -463,11 +463,11 @@ int main(int argc, char **argv)
/* Create the actual divelist */ /* Create the actual divelist */
dive_list = dive_list_create(); dive_list = dive_list_create();
gtk_paned_add1(GTK_PANED(paned), dive_list.container_widget); gtk_paned_add2(GTK_PANED(paned), dive_list.container_widget);
/* VBox for dive info, and tabs */ /* VBox for dive info, and tabs */
info_box = gtk_vbox_new(FALSE, 6); info_box = gtk_vbox_new(FALSE, 6);
gtk_paned_add2(GTK_PANED(paned), info_box); gtk_paned_add1(GTK_PANED(paned), info_box);
/* Notebook for dive info vs profile vs .. */ /* Notebook for dive info vs profile vs .. */
notebook = gtk_notebook_new(); notebook = gtk_notebook_new();