From f78dcf2175bc70996e2100e63237cc7d73ef3e52 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Tue, 3 Sep 2013 16:10:09 +0200 Subject: [PATCH] Fix the window screen position lost when starting hidden with geometry. Closes LP#1035617 --- terminatorlib/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminatorlib/window.py b/terminatorlib/window.py index 8e5cc28d..f1e327e1 100755 --- a/terminatorlib/window.py +++ b/terminatorlib/window.py @@ -385,6 +385,7 @@ class Window(Container, gtk.Window): #Window must be shown, then hidden for the hotkeys to be registered if (self.ignore_startup_show and startup == True): + self.position = self.get_position() self.hide()