Fix (workaround, actually) for bug #844676: deselecting "show hidden" can

cause an index error. We now select the first package if this threatens
to happen. Will backport.
This commit is contained in:
Jack Jansen 2003-11-27 23:19:33 +00:00
parent 9cc4fcd649
commit ac5d667e9f
1 changed files with 2 additions and 0 deletions

View File

@ -383,6 +383,8 @@ class PackageBrowser(PimpInterface):
self.w.user_button.enable(0)
else:
sel = sel[0]
if sel >= len(self.packages):
sel = 0
self.w.packagebrowser.setselection([sel])
installed, message = self.getstatus(sel)
self.w.installed.set(installed)