From da9cdeaff26a73af59a2443c3c7b167d8817b1c3 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 25 Jan 2010 14:47:25 -0500 Subject: Fix thinko in displaying the first filter notebook page that disks. Previous version had a missing break. Put the break in. --- iw/filter_gui.py | 1 + 1 file changed, 1 insertion(+) (limited to 'iw') diff --git a/iw/filter_gui.py b/iw/filter_gui.py index a0f67046f..42475032c 100644 --- a/iw/filter_gui.py +++ b/iw/filter_gui.py @@ -539,6 +539,7 @@ class FilterWindow(InstallWindow): for pg in self.pages: if pg.getNVisible(): self.notebook.set_current_page(i) + break i += 1 -- cgit