Set foreground colour properly, this was missed from the epic-refactor work

This commit is contained in:
Chris Jones 2010-02-11 22:14:07 +00:00
parent c387197b93
commit bfb3bec7d4
1 changed files with 3 additions and 0 deletions

View File

@ -126,4 +126,7 @@ class EditableLabel(gtk.EventBox):
if key == 'Escape':
self._entry_to_label (None, None)
def modify_fg(self, state, color):
self._label.modify_fg(state, color)
gobject.type_register(EditableLabel)