From 56e78990f288aa8f3220df9428befaee6d6797ad Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Fri, 19 Jun 2015 03:41:46 +0200 Subject: [PATCH] (trunk-1555) Show application if --new-tab passed, although needs currently broken dbus - lp #1367680 --- terminatorlib/window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminatorlib/window.py b/terminatorlib/window.py index a7a86771..9c35a0c5 100755 --- a/terminatorlib/window.py +++ b/terminatorlib/window.py @@ -267,6 +267,8 @@ class Window(Container, Gtk.Window): if not self.is_child_notebook(): dbg('Making a new Notebook') notebook = maker.make('Notebook', window=self) + self.show() + self.present() return self.get_child().newtab(debugtab, cwd=cwd, profile=profile) def on_delete_event(self, window, event, data=None):