From 1585d73b1085285e5aa06ac9cf8cc2e019e801ea Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Mon, 7 Jul 2008 22:47:02 +0100 Subject: [PATCH] Yield to bug 242852 and failsafe on transparency. I've added a FAQ page to the website which prominently explains how to enable real transparency --- doc/terminator_config.5 | 2 +- terminatorlib/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/terminator_config.5 b/doc/terminator_config.5 index 815120db..a7232766 100644 --- a/doc/terminator_config.5 +++ b/doc/terminator_config.5 @@ -17,7 +17,7 @@ Default value: \fBTrue\fR .TP .B enable_real_transparency\fR (boolean) If true, Terminator will try to use real transparency if possible. -Default value: \fBTrue\fR +Default value: \fBFalse\fR .TP .B silent_bell\fR (boolean) If true, don't make a noise when applications send the escape sequence for the terminal bell. Flash the terminal instead. diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 0bf3e918..6b7f70be 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -128,7 +128,7 @@ class TerminatorConfValuestore: 'cycle_term_tab' : True, 'copy_on_selection' : False, 'close_button_on_tab' : True, - 'enable_real_transparency' : True, + 'enable_real_transparency' : False, } def __getattr__ (self, keyname):