aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-09-11 16:54:27 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-09-11 16:54:27 +0000
commitdc4af1f5a380da1a55a7863ad695295bfd71e08c (patch)
treee836d8c8b81edee8853c1de9b43b777fa6b919a7 /gtk
parent541b713ee91a88865b0c1e0de2aa2a959025716e (diff)
Make the splash screen look just a little bit better.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22843 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk')
-rw-r--r--gtk/about_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/about_dlg.c b/gtk/about_dlg.c
index ca01be3c72..24e8c2f0d5 100644
--- a/gtk/about_dlg.c
+++ b/gtk/about_dlg.c
@@ -130,13 +130,13 @@ splash_new(const char *message)
OBJECT_SET_DATA(win, "protocol_label", main_lb);
percentage_hb = gtk_hbox_new(FALSE, 1);
- gtk_box_pack_start(GTK_BOX(main_vb), percentage_hb, FALSE, TRUE, 3);
+ gtk_box_pack_start(GTK_BOX(main_vb), percentage_hb, TRUE, TRUE, 3);
prog_bar = gtk_progress_bar_new();
#if GTK_MAJOR_VERSION < 2
gtk_progress_set_activity_mode(GTK_PROGRESS(prog_bar), FALSE);
#endif
- gtk_box_pack_start(GTK_BOX(percentage_hb), prog_bar, FALSE, TRUE, 3);
+ gtk_box_pack_start(GTK_BOX(percentage_hb), prog_bar, TRUE, TRUE, 3);
OBJECT_SET_DATA(win, "progress_bar", prog_bar);
percentage_lb = gtk_label_new(" 0%");