From 6a9e951f1c5f4e8a6c3c97b5f999506ca1f24d8e Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 19 Sep 2011 22:08:43 -0700 Subject: [PATCH] Switch the dive list and dive profile panes around It looks better this way, I think. Signed-off-by: Linus Torvalds --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.43.0