From: Linus Torvalds Date: Tue, 20 Sep 2011 05:08:43 +0000 (-0700) Subject: Switch the dive list and dive profile panes around X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=6a9e951f1c5f4e8a6c3c97b5f999506ca1f24d8e;p=ext%2Fsubsurface.git Switch the dive list and dive profile panes around It looks better this way, I think. Signed-off-by: Linus Torvalds --- diff --git a/main.c b/main.c index f916632..cc90e42 100644 --- a/main.c +++ b/main.c @@ -463,11 +463,11 @@ int main(int argc, char **argv) /* Create the actual divelist */ 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 */ 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 = gtk_notebook_new();