Be able to set the foreground colour of titlebars too
This commit is contained in:
parent
5055371b1c
commit
9f17fc0790
|
@ -79,6 +79,10 @@ class TerminatorTermTitle (gtk.EventBox):
|
||||||
"""Set the background color of the titlebar"""
|
"""Set the background color of the titlebar"""
|
||||||
self.modify_bg (gtk.STATE_NORMAL, color)
|
self.modify_bg (gtk.STATE_NORMAL, color)
|
||||||
|
|
||||||
|
def set_foreground_color (self, color):
|
||||||
|
"""Set the foreground color of the titlebar"""
|
||||||
|
self._title.modify_fg (color)
|
||||||
|
|
||||||
class TerminatorTerm (gtk.VBox):
|
class TerminatorTerm (gtk.VBox):
|
||||||
|
|
||||||
matches = {}
|
matches = {}
|
||||||
|
|
Loading…
Reference in New Issue