Make _entry_handler_id not be a static class attribute because it doesn't need to be
This commit is contained in:
parent
b79c62ef49
commit
b1967992fd
|
@ -31,10 +31,11 @@ class TerminatorEditableLabel( gtk.EventBox ):
|
||||||
_autotext = None
|
_autotext = None
|
||||||
_custom = None
|
_custom = None
|
||||||
_entry = None
|
_entry = None
|
||||||
_entry_handler_id = []
|
_entry_handler_id = None
|
||||||
def __init__(self, text = ""):
|
def __init__(self, text = ""):
|
||||||
''' Class initialiser'''
|
''' Class initialiser'''
|
||||||
gtk.EventBox.__init__(self)
|
gtk.EventBox.__init__(self)
|
||||||
|
self._entry_handler_id = []
|
||||||
self._label = gtk.Label(text)
|
self._label = gtk.Label(text)
|
||||||
self._custom = False
|
self._custom = False
|
||||||
self.set_visible_window (False)
|
self.set_visible_window (False)
|
||||||
|
|
Loading…
Reference in New Issue