From 43b0c549863505bef3edd5841b432da0b67cf362 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Fri, 19 Jun 2015 03:12:51 +0200 Subject: [PATCH] Added additional command to present window. On my system the show unminimized the window, but if a window was just in the background, it was not raised. --- terminatorlib/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminatorlib/window.py b/terminatorlib/window.py index cf7e09ed..85ad74cb 100755 --- a/terminatorlib/window.py +++ b/terminatorlib/window.py @@ -268,6 +268,7 @@ class Window(Container, gtk.Window): 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):