diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-31 17:17:20 +1100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-31 17:18:06 +1100 |
commit | d37f8736dbbf74157eb73a16678f2ec54c02d16c (patch) | |
tree | 10b95f8e2b7f88359210e7c2db3fa8b851ea4f2e /statistics.c | |
parent | 5fd901591cf2b2a2c613856425150e42235f7ecf (diff) | |
download | subsurface-d37f8736dbbf74157eb73a16678f2ec54c02d16c.tar.gz |
Place Info and Stats page at the top of notebook page
This seems to look better than the previous "centered" setup when
switching between notebook pages.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'statistics.c')
-rw-r--r-- | statistics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/statistics.c b/statistics.c index 14d83b686..fbc4f9273 100644 --- a/statistics.c +++ b/statistics.c @@ -768,7 +768,7 @@ GtkWidget *total_stats_widget(void) statsframe = gtk_frame_new(_("Statistics")); stats_w.framelabel = gtk_frame_get_label_widget(GTK_FRAME(statsframe)); gtk_label_set_max_width_chars(GTK_LABEL(stats_w.framelabel), 60); - gtk_box_pack_start(GTK_BOX(vbox), statsframe, TRUE, FALSE, 3); + gtk_box_pack_start(GTK_BOX(vbox), statsframe, FALSE, FALSE, 3); framebox = gtk_vbox_new(FALSE, 3); gtk_container_add(GTK_CONTAINER(statsframe), framebox); @@ -815,7 +815,7 @@ GtkWidget *single_stats_widget(void) vbox = gtk_vbox_new(FALSE, 3); infoframe = gtk_frame_new(_("Dive Info")); - gtk_box_pack_start(GTK_BOX(vbox), infoframe, TRUE, FALSE, 3); + gtk_box_pack_start(GTK_BOX(vbox), infoframe, FALSE, FALSE, 3); framebox = gtk_vbox_new(FALSE, 3); gtk_container_add(GTK_CONTAINER(infoframe), framebox); |