summaryrefslogtreecommitdiff
path: root/portato/gui/windows/basic.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-09-18 22:17:27 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-09-18 22:17:27 +0200
commitab6bf14e0d7a5e157902c0dbf94ec27bafba2b27 (patch)
tree83c3974f89c372f143f4c6bdcf46058b5acc49ef /portato/gui/windows/basic.py
parent57398c0430f6933999618eab230be388831902a5 (diff)
downloadportato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.tar.gz
portato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.tar.bz2
portato-ab6bf14e0d7a5e157902c0dbf94ec27bafba2b27.zip
Also use WrappedTree in popups
Diffstat (limited to 'portato/gui/windows/basic.py')
-rw-r--r--portato/gui/windows/basic.py2
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)