summaryrefslogtreecommitdiff
path: root/portato/gui/qt
diff options
context:
space:
mode:
authornecoro <>2007-07-13 04:38:04 +0000
committernecoro <>2007-07-13 04:38:04 +0000
commit0a8d3b8add548efbc44a67c3eb1223ff94aaffc5 (patch)
tree3def310b4ee8657ae2b9356bf4ce19e240358cf6 /portato/gui/qt
parentfc6d232a9357211a44dad3300ff64571620aa1bf (diff)
downloadportato-0a8d3b8add548efbc44a67c3eb1223ff94aaffc5.tar.gz
portato-0a8d3b8add548efbc44a67c3eb1223ff94aaffc5.tar.bz2
portato-0a8d3b8add548efbc44a67c3eb1223ff94aaffc5.zip
fixes
Diffstat (limited to 'portato/gui/qt')
-rw-r--r--portato/gui/qt/windows.py23
1 files changed, 13 insertions, 10 deletions
diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py
index 2f40dcf..5aa0e24 100644
--- a/portato/gui/qt/windows.py
+++ b/portato/gui/qt/windows.py
@@ -412,7 +412,16 @@ class PackageDetails:
# comboBox
self.set_combo()
- # the labels
+ # disable buttons when emerging is not allowed
+ if not self.queue or not self.doEmerge:
+ self.window.pkgEmergeBtn.setEnabled(False)
+ self.window.pkgUnmergeBtn.setEnabled(False)
+
+ self._show_tab()
+
+ self.window.tabWidget.setCurrentIndex(self.window.PKG_PAGE)
+
+ def set_labels (self):
desc = self.actual_package().get_package_settings("DESCRIPTION").replace("&","&amp;")
if not desc:
@@ -430,15 +439,6 @@ class PackageDetails:
self.window.descLabel.setText(desc)
self.window.nameLabel.setText(name)
- # disable buttons when emerging is not allowed
- if not self.queue or not self.doEmerge:
- self.window.pkgEmergeBtn.setEnabled(False)
- self.window.pkgUnmergeBtn.setEnabled(False)
-
- self._show_tab()
-
- self.window.tabWidget.setCurrentIndex(self.window.PKG_PAGE)
-
def set_combo (self):
"""Fills the version combo box with the right items and selects the correct one."""
@@ -622,6 +622,9 @@ class PackageDetails:
# ATTENTION: BIG'n'DIRTY :)
#
+ # labels
+ self.set_labels()
+
# build new
self.build_use_list()
pkg = self.actual_package()