diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-18 22:17:27 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-09-18 22:17:27 +0200 |
commit | ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27 (patch) | |
tree | 83c3974f89c372f143f4c6bdcf46058b5acc49ef /portato | |
parent | 57398c0430f6933999618eab230be388831902a5 (diff) | |
download | portato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.tar.gz portato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.tar.bz2 portato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.zip |
Also use WrappedTree in popups
Diffstat (limited to 'portato')
-rw-r--r-- | portato/gui/windows/basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/basic.py b/portato/gui/windows/basic.py index 6d74858..635083a 100644 --- a/portato/gui/windows/basic.py +++ b/portato/gui/windows/basic.py @@ -119,7 +119,7 @@ class AbstractDialog (Window): class Popup (object): def __init__ (self, name, parent, file = "popups"): - self.tree = gtk.glade.XML(os.path.join(TEMPLATE_DIR, file+".glade"), root = name) + self.tree = WrappedTree(self.__class__.__name__, gtk.glade.XML(os.path.join(TEMPLATE_DIR, file+".glade"), root = name)) self.tree.signal_autoconnect(parent) self._popup = self.tree.get_widget(name) |