aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main_statusbar.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-12 23:34:44 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-12 23:34:44 +0000
commit1f8e6c08bec07688f19da62e4d0f3a5996ebd9fb (patch)
tree64a1ff104e52bd5a9a6ed8f5b2e590861e1ca6d4 /gtk/main_statusbar.c
parent5d7dee89534f5a60c005923ac4368700360363b8 (diff)
various code cleanup
svn path=/trunk/; revision=24964
Diffstat (limited to 'gtk/main_statusbar.c')
-rw-r--r--gtk/main_statusbar.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/main_statusbar.c b/gtk/main_statusbar.c
index 513c388c41..45ce230415 100644
--- a/gtk/main_statusbar.c
+++ b/gtk/main_statusbar.c
@@ -187,6 +187,10 @@ statusbar_new(void)
{
GtkWidget *status_hbox;
+ /* Sstatus hbox */
+ status_hbox = gtk_hbox_new(FALSE, 1);
+ gtk_container_border_width(GTK_CONTAINER(status_hbox), 0);
+
/* info (main) statusbar */
info_bar = info_bar_new();
gtk_widget_show(info_bar);
@@ -202,11 +206,6 @@ statusbar_new(void)
/* expert info indicator */
status_expert_new();
- /* Filter/status hbox */
- status_hbox = gtk_hbox_new(FALSE, 1);
- gtk_container_border_width(GTK_CONTAINER(status_hbox), 0);
- gtk_widget_show(status_hbox);
-
/* Pane for the statusbar */
status_pane_left = gtk_hpaned_new();
gtk_widget_show(status_pane_left);