diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-18 22:25:04 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-18 22:25:04 +0100 |
commit | c0046edcf062eda241d9285806e3ac9c21754129 (patch) | |
tree | 3224287ca72d3878cbd9412dbb4cd45ca684efd7 /portato/gui/windows/main.py | |
parent | a01af63eeaf34926dab56b9458e490fce0378de8 (diff) | |
download | portato-c0046edcf062eda241d9285806e3ac9c21754129.tar.gz portato-c0046edcf062eda241d9285806e3ac9c21754129.tar.bz2 portato-c0046edcf062eda241d9285806e3ac9c21754129.zip |
Fix popups
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r-- | portato/gui/windows/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 5494b25..b043532 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -553,8 +553,8 @@ class MainWindow (Window): self.packageTable = PackageTable(self) # popups - # self.consolePopup = Popup("consolePopup", self, self.__file__) - # self.trayPopup = Popup("systrayPopup", self) + self.consolePopup = self.tree.get_widget("uimanager").get_widget("ui/consolePopup") + self.trayPopup = self.tree.get_widget("uimanager").get_widget("ui/systrayPopup") # pause menu items self.emergePaused = False |