mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
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:
parent
d064044833
commit
6a9e951f1c
1 changed files with 2 additions and 2 deletions
4
main.c
4
main.c
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue