From bfb3bec7d4da64c86aad3994fbd89280090edfab Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 11 Feb 2010 22:14:07 +0000 Subject: [PATCH] Set foreground colour properly, this was missed from the epic-refactor work --- terminatorlib/editablelabel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terminatorlib/editablelabel.py b/terminatorlib/editablelabel.py index 168f3157..f59bff48 100644 --- a/terminatorlib/editablelabel.py +++ b/terminatorlib/editablelabel.py @@ -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)