Commit cf9c93a3 authored by Jack Jansen's avatar Jack Jansen

Package Mnager error dialogs could refer to hidden packages, which was

confusing. To be on the safe side we always show hidden packages before
showing error dialogs. Will backport.
parent 1ce7d680
......@@ -421,6 +421,11 @@ class PackageBrowser(PimpInterface):
def showmessages(self, messages):
if messages:
# To be on the safe side we always show the hidden packages,
# they may be referred to in the error messages.
if not self.w.hidden_button.get():
self.w.hidden_button.set(1)
self.updatestatus()
if type(messages) == list:
messages = '\n'.join(messages)
if self.w.verbose_button.get():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment