summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-19 12:46:22 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-19 12:46:22 -0700
commit69ff164afc3450ad44f7e923326c51fd1981a892 (patch)
treefb3a907af022c1bdd36ada4c299d474c6ca1f856 /main.c
parentfefcbf125e89735d748307d0506938e4d4105321 (diff)
downloadsubsurface-69ff164afc3450ad44f7e923326c51fd1981a892.tar.gz
Make the pane split be vertical rather than horizontal
Ok, this makes that dive list look empty and ugly, but as mentioned, we really should start filling it with all the useful information that we can sort by, like temperature and air use. And even stuff that might not make sense to sort by (would you want to sort by cylinder size or name? Or by nitrox percentage) could still be *shown* in the list fairly naturally. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index ac043fd39..7c7ec8c3e 100644
--- a/main.c
+++ b/main.c
@@ -457,7 +457,7 @@ int main(int argc, char **argv)
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
/* HPane for left the dive list, and right the dive info */
- paned = gtk_hpaned_new();
+ paned = gtk_vpaned_new();
gtk_box_pack_end(GTK_BOX(vbox), paned, TRUE, TRUE, 0);
/* Create the actual divelist */