From 630da9b06d00f143ed57c497ee10bbd0b3376d92 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 5 May 2010 12:53:01 +0100 Subject: [PATCH] I think tabs should always be homogeneous. Let's see how that works out --- terminatorlib/notebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/notebook.py b/terminatorlib/notebook.py index 4e69bba3..43c2b9b2 100755 --- a/terminatorlib/notebook.py +++ b/terminatorlib/notebook.py @@ -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())