From 58747628a51311a5ae528c17aede6d11f73a24be Mon Sep 17 00:00:00 2001 From: Chris James Date: Mon, 28 Jul 2008 03:54:30 -0500 Subject: [PATCH] fixed hide --- terminatorlib/terminator.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index 4c311006..8440811c 100755 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -95,8 +95,7 @@ class Terminator: self._maximised = False self._fullscreen = False self._f11_modifier = False - self.hidden = False - + self.term_list = [] stores = [] stores.append (config.TerminatorConfValuestoreRC ()) @@ -169,8 +168,6 @@ class Terminator: if borderless or self.conf.borderless: self.window.set_decorated (False) - if hidden or self.conf.hidden: - self.hide() # Set RGBA colormap if possible so VTE can use real alpha # channels for transparency. @@ -190,6 +187,9 @@ class Terminator: self.window.show () term.spawn_child () + if hidden or self.conf.hidden: + self.hide() + # jgc: show/hide functions for quake mode def show(self): """Show the terminator window"""