diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-31 20:36:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-31 20:36:51 -0700 |
commit | feec55504084baf022517d39e72431b4d361a217 (patch) | |
tree | b079481b99f1e95353ac34cddd92b51a25718206 /main.c | |
parent | 23c6a42b084fbd1affbf7cc1b3f5e94fb15d3a92 (diff) | |
download | subsurface-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(); |