diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-23 00:26:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-23 00:26:12 -0600 |
commit | 3151f8b9d4ac201182c9fcdec52e6a7724a433bc (patch) | |
tree | fd7b983ecbbebf2fda98684823ded62258c9c53e /twin | |
parent | 534a069ee046a08749e6dc0e077999553281d976 (diff) | |
download | tdebase-3151f8b9d4ac201182c9fcdec52e6a7724a433bc.tar.gz tdebase-3151f8b9d4ac201182c9fcdec52e6a7724a433bc.zip |
Disable shadows in compton-tde by default (i.e. if no configuration file could be found)
Diffstat (limited to 'twin')
-rw-r--r-- | twin/compton-tde/compton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c index 257b4c2ad..c3b0141ea 100644 --- a/twin/compton-tde/compton.c +++ b/twin/compton-tde/compton.c @@ -6291,7 +6291,7 @@ get_cfg(session_t *ps, int argc, char *const *argv, bool first_pass) { for (i = 0; i < NUM_WINTYPES; ++i) { ps->o.wintype_fade[i] = false; - ps->o.wintype_shadow[i] = true; + ps->o.wintype_shadow[i] = false; ps->o.wintype_opacity[i] = 1.0; } |