Be able to set the foreground colour of titlebars too

This commit is contained in:
Chris Jones 2009-01-26 00:22:11 +00:00
parent 5055371b1c
commit 9f17fc0790
1 changed files with 4 additions and 0 deletions

View File

@ -79,6 +79,10 @@ class TerminatorTermTitle (gtk.EventBox):
"""Set the background color of the titlebar"""
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):
matches = {}