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:
parent
53f2bcec75
commit
b3a156c786
|
@ -740,10 +740,10 @@ text/plain
|
||||||
# set transparency for the background (image)
|
# set transparency for the background (image)
|
||||||
opacity = 65535
|
opacity = 65535
|
||||||
if background_type in ("image", "transparent"):
|
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))
|
self._vte.set_background_saturation(1 - (self.conf.background_darkness))
|
||||||
opacity = int(self.conf.background_darkness * 65535)
|
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)))
|
dbg ('H9TRANS: Set background saturation to: %s' % (1 - (self.conf.background_darkness)))
|
||||||
else:
|
else:
|
||||||
dbg ('H9TRANS: Set background saturation to: 1')
|
dbg ('H9TRANS: Set background saturation to: 1')
|
||||||
|
|
Loading…
Reference in New Issue