From 3682edda9e92af866ae167dac887c00c297b040e Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Sat, 5 Dec 2009 18:56:21 -0200 Subject: [PATCH] Disable the statusbar 'cause we are not using it anyway --- mitterlib/ui/ui_pygtk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mitterlib/ui/ui_pygtk.py b/mitterlib/ui/ui_pygtk.py index e6e9409..d4fca32 100644 --- a/mitterlib/ui/ui_pygtk.py +++ b/mitterlib/ui/ui_pygtk.py @@ -222,7 +222,7 @@ class Interface(object): grid = self._create_grid() (menu, toolbar, accelerators) = self._create_menu_and_toolbar() update_field = self._create_update_box() - statusbar = self._create_statusbar() + #statusbar = self._create_statusbar() update_box = gtk.VPaned() update_box.pack1(grid, resize=True, shrink=False) @@ -231,7 +231,7 @@ class Interface(object): box = gtk.VBox(False, 1) box.pack_start(menu, False, True, 0) box.pack_start(update_box, True, True, 0) - box.pack_start(statusbar, False, False, 0) + #box.pack_start(statusbar, False, False, 0) main_window.add(box) main_window.add_accel_group(accelerators)