summaryrefslogtreecommitdiff
path: root/portato/gui/qt/windows.py
diff options
context:
space:
mode:
authornecoro <>2007-06-15 13:26:33 +0000
committernecoro <>2007-06-15 13:26:33 +0000
commit7a87171db82eb2bd4b46dc1077e04dfcba2c7393 (patch)
treeb6d4e9edc38f8f1bf2a471d1987983175a141994 /portato/gui/qt/windows.py
parentfdb59c4e6f967c0c133f2aba1fb0c290d1e05f5b (diff)
downloadportato-7a87171db82eb2bd4b46dc1077e04dfcba2c7393.tar.gz
portato-7a87171db82eb2bd4b46dc1077e04dfcba2c7393.tar.bz2
portato-7a87171db82eb2bd4b46dc1077e04dfcba2c7393.zip
added ability of passing "&&" to the sync command
Diffstat (limited to 'portato/gui/qt/windows.py')
-rw-r--r--portato/gui/qt/windows.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py
index 16daa5e..d701893 100644
--- a/portato/gui/qt/windows.py
+++ b/portato/gui/qt/windows.py
@@ -411,7 +411,8 @@ class PackageDetails:
return self.packages[self.window.versCombo.currentIndex()]
def cb_ebuild_clicked (self):
- EbuildDialog(self.window, self.actual_package()).exec_()
+ hook = plugin.hook("open_ebuild", self.actual_package(), self.window)
+ hook(EbuildDialog)(self.window, self.actual_package()).exec_()
def cb_emerge_clicked (self):
"""Callback for pressed emerge-button. Adds the package to the EmergeQueue."""