From 3d67bd32260e7f3727ad363a547d7b6b2a987871 Mon Sep 17 00:00:00 2001 From: bryce Date: Mon, 1 Jun 2015 20:04:11 -0700 Subject: [PATCH] Show application if --new-tab given Fixes: LP #1367680 Reviewed-by: Bryce Harrington --- terminatorlib/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminatorlib/window.py b/terminatorlib/window.py index 09a8987c..cf7e09ed 100755 --- a/terminatorlib/window.py +++ b/terminatorlib/window.py @@ -267,6 +267,7 @@ class Window(Container, gtk.Window): if not self.is_child_notebook(): dbg('Making a new Notebook') notebook = maker.make('Notebook', window=self) + self.show() return self.get_child().newtab(debugtab, cwd=cwd, profile=profile) def on_delete_event(self, window, event, data=None):