From cc0346bb22c0229b2b098aa7fa0bfb71eb79a455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20E=2E=20Narv=C3=A1ez?= Date: Wed, 9 Oct 2013 09:31:19 -0400 Subject: [PATCH] Removing Call to Deprecated vte_set_background_transparent() For some reason this has recently been causing rigo not to start in my system, but the fact that it is already deprecated should be enough to just get rid of it. --- rigo/rigo/ui/gtk3/widgets/terminal.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rigo/rigo/ui/gtk3/widgets/terminal.py b/rigo/rigo/ui/gtk3/widgets/terminal.py index f2ecca75a..2b4f25684 100644 --- a/rigo/rigo/ui/gtk3/widgets/terminal.py +++ b/rigo/rigo/ui/gtk3/widgets/terminal.py @@ -174,7 +174,6 @@ class TerminalWidget(Vte.Terminal): self.set_color_bold_rgba(fg_rgba) def _configure(self): - self.set_background_transparent(False) self.set_emulation("xterm") self.set_font_from_string("Monospace 9") self.set_scrollback_lines(10000)