I think this is more correct. the theme_colors setting elsewhere should only apply to font settings, not terminal colours

This commit is contained in:
Chris Jones 2009-07-02 21:30:53 +01:00
parent 53f2bcec75
commit b3a156c786
1 changed files with 2 additions and 2 deletions

View File

@ -740,10 +740,10 @@ text/plain
# set transparency for the background (image)
opacity = 65535
if background_type in ("image", "transparent"):
self._vte.set_background_tint_color (bg_color)
self._vte.set_background_tint_color (self.conf.background_color)
self._vte.set_background_saturation(1 - (self.conf.background_darkness))
opacity = int(self.conf.background_darkness * 65535)
dbg ('H9TRANS: Set background tint color to: %s' % bg_color)
dbg ('H9TRANS: Set background tint color to: %s' % self.conf.background_color)
dbg ('H9TRANS: Set background saturation to: %s' % (1 - (self.conf.background_darkness)))
else:
dbg ('H9TRANS: Set background saturation to: 1')