Make _entry_handler_id not be a static class attribute because it doesn't need to be

This commit is contained in:
Chris Jones 2009-09-03 09:03:05 +01:00
parent b79c62ef49
commit b1967992fd
1 changed files with 2 additions and 1 deletions

View File

@ -31,10 +31,11 @@ class TerminatorEditableLabel( gtk.EventBox ):
_autotext = None
_custom = None
_entry = None
_entry_handler_id = []
_entry_handler_id = None
def __init__(self, text = ""):
''' Class initialiser'''
gtk.EventBox.__init__(self)
self._entry_handler_id = []
self._label = gtk.Label(text)
self._custom = False
self.set_visible_window (False)