summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 20:36:51 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 20:36:51 -0700
commitfeec55504084baf022517d39e72431b4d361a217 (patch)
treeb079481b99f1e95353ac34cddd92b51a25718206 /main.c
parent23c6a42b084fbd1affbf7cc1b3f5e94fb15d3a92 (diff)
downloadsubsurface-feec55504084baf022517d39e72431b4d361a217.tar.gz
Add some extended dive info fields
.. and tweak the basic info layout a bit. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 3425cd856..186088bd4 100644
--- a/main.c
+++ b/main.c
@@ -173,7 +173,8 @@ int main(int argc, char **argv)
/* Frame for minimal dive info */
frame = dive_info_frame();
- gtk_table_attach(GTK_TABLE(table), frame, 1, 2, 0, 1, 0, 0, 0, 0);
+ gtk_table_attach(GTK_TABLE(table), frame, 1, 2, 0, 1,
+ GTK_FILL | GTK_SHRINK | GTK_EXPAND, 0, 0, 0);
/* Notebook for dive info vs profile vs .. */
notebook = gtk_notebook_new();