From 3ca80a59b23e738dd60b522e73a67601765d9c65 Mon Sep 17 00:00:00 2001 From: Mirco Bauer Date: Sat, 30 Jun 2012 16:48:07 +0200 Subject: [PATCH] [Frontend-GNOME] Apply saved state of ShowStatusBar correctly --- src/Frontend-GNOME/MainWindow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Frontend-GNOME/MainWindow.cs b/src/Frontend-GNOME/MainWindow.cs index d3f55547a..0aab58f23 100644 --- a/src/Frontend-GNOME/MainWindow.cs +++ b/src/Frontend-GNOME/MainWindow.cs @@ -580,6 +580,9 @@ public MainWindow() : base("Smuxi") StatusHBox = new Gtk.HBox(); StatusHBox.PackStart(status_bar_hbox); StatusHBox.PackStart(_ProgressBar, false, false, 0); + StatusHBox.ShowAll(); + StatusHBox.NoShowAll = true; + StatusHBox.Visible = ShowStatusBarMenuItem.Active; vbox.PackStart(StatusHBox, false, false, 0); Add(vbox);