From 31ab1294c4fe16a039ecb9e89075a344efeb2074 Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Tue, 24 Jun 2008 20:27:01 +0000 Subject: [PATCH] Apply scrollbars to tabs on main Gramps window when there is not enough room on screen to display all the tabs. Useful for small screen devices like Asus eee PC svn: r10830 --- src/ViewManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ViewManager.py b/src/ViewManager.py index e5995b07d..e465e6069 100644 --- a/src/ViewManager.py +++ b/src/ViewManager.py @@ -255,6 +255,7 @@ class ViewManager: hbox.show_all() self.notebook = gtk.Notebook() + self.notebook.set_scrollable(True) self.notebook.set_show_tabs(False) self.notebook.show() self.__init_lists()