I think tabs should always be homogeneous. Let's see how that works out

This commit is contained in:
Chris Jones 2010-05-05 12:53:01 +01:00
parent 4fca314259
commit 630da9b06d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class Notebook(Container, gtk.Notebook):
# the new order of terminals. We probably need to preserve this for
# navigation to next/prev terminals.
#self.connect('page-reordered', self.on_page_reordered)
self.set_property('homogeneous', not self.config['scroll_tabbar'])
self.set_property('homogeneous', True)
self.set_scrollable(self.config['scroll_tabbar'])
pos = getattr(gtk, 'POS_%s' % self.config['tab_position'].upper())