Kaydet (Commit) 9cc4fcd6 authored tarafından 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.
üst b68947ef
......@@ -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