From f5cd4b053d9936bed1f44c19d451367fa609d6a9 Mon Sep 17 00:00:00 2001 From: Przemek Wesolek Date: Sat, 5 Nov 2011 16:58:39 +0100 Subject: [PATCH] Inheriting profile on a split in tabbed pane. --- terminatorlib/notebook.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminatorlib/notebook.py b/terminatorlib/notebook.py index da8b2fd2..1d0ae76f 100755 --- a/terminatorlib/notebook.py +++ b/terminatorlib/notebook.py @@ -136,6 +136,8 @@ class Notebook(Container, gtk.Notebook): sibling = maker.make('terminal') sibling.set_cwd(cwd) sibling.spawn_child() + if sibling: + sibling.force_set_profile(None, widget.get_profile()) self.insert_page(container, None, page_num) self.set_tab_reorderable(container, True)