Make that red not so red ;)

This commit is contained in:
Marco Pesenti Gritti 2006-05-22 23:16:54 -04:00
parent 073ffd1bff
commit fc5e077bdc

View File

@ -136,7 +136,7 @@ class ActivityHost(dbus.service.Object):
def set_has_changes(self, has_changes): def set_has_changes(self, has_changes):
if has_changes: if has_changes:
attrs = pango.AttrList() attrs = pango.AttrList()
attrs.insert(pango.AttrForeground(65535, 0, 0, 0, -1)) attrs.insert(pango.AttrForeground(50000, 0, 0, 0, -1))
attrs.insert(pango.AttrWeight(pango.WEIGHT_BOLD, 0, -1)) attrs.insert(pango.AttrWeight(pango.WEIGHT_BOLD, 0, -1))
self.tab_label.set_attributes(attrs) self.tab_label.set_attributes(attrs)
else: else: