From d54f21c203e599ecfc965470bdf6ef9d90a141d2 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Fri, 20 Mar 2009 01:24:24 +0000 Subject: [PATCH] be more explicit about setting background transparency so we always update the state correctly. Closes LP #328994 --- terminatorlib/terminatorterm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminatorlib/terminatorterm.py b/terminatorlib/terminatorterm.py index 26e5a40f..52b6490c 100755 --- a/terminatorlib/terminatorterm.py +++ b/terminatorlib/terminatorterm.py @@ -708,6 +708,8 @@ text/plain if background_type == "transparent": if not self.conf.enable_real_transparency: self._vte.set_background_transparent (True) + else: + self._vte.set_background_transparent (False) # Set our cursor blinkiness self._vte.set_cursor_blinks (self.conf.cursor_blink)