From 121ed53c3239ba84622b8bd18cf787c02f1c81e1 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 11 Jan 2011 23:30:42 +0000 Subject: [PATCH] Change sidebar page selection to standard tabs svn: r16366 --- src/gui/sidebar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/sidebar.py b/src/gui/sidebar.py index 126ad0a97..76bd36da3 100644 --- a/src/gui/sidebar.py +++ b/src/gui/sidebar.py @@ -71,7 +71,7 @@ class Sidebar(object): close_button.connect('clicked', self.__close_clicked) hbox.pack_start(select_button, False) hbox.pack_end(close_button, False) - frame.show_all() + #frame.show_all() self.top.pack_start(frame, False) @@ -81,7 +81,7 @@ class Sidebar(object): self.notebook = gtk.Notebook() self.notebook.show() - self.notebook.set_show_tabs(False) + self.notebook.set_show_tabs(True) self.notebook.set_show_border(False) self.notebook.connect('switch_page', self.__switch_page) self.top.pack_start(self.notebook, True)