summaryrefslogtreecommitdiff
path: root/portato/gui/qt/windows.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato/gui/qt/windows.py')
-rw-r--r--portato/gui/qt/windows.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py
index 904b07f..31addc3 100644
--- a/portato/gui/qt/windows.py
+++ b/portato/gui/qt/windows.py
@@ -545,6 +545,9 @@ class PackageDetails:
self.window.pkgEmergeBtn.setEnabled(True)
self.window.installedCheck.setCheckState(qCheck(pkg.is_installed()))
+ masking_reason = pkg.get_masking_reason() or "" # set to "" if the reason is None
+ self.window.maskedCheck.setToolTip(masking_reason)
+
if pkg.is_masked(use_changed = False) and not pkg.is_masked(use_changed = True):
self.window.maskedCheck.setText("(Masked)")
else: