summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2010-01-25 14:47:25 -0500
committerPeter Jones <pjones@redhat.com>2010-01-25 15:22:11 -0500
commitda9cdeaff26a73af59a2443c3c7b167d8817b1c3 (patch)
tree5d0021493273066b0f8cd9b8ed3113080abb00af /iw
parent4557bb19003475b59698d9a4efa9bd16ff5616eb (diff)
downloadanaconda-da9cdeaff26a73af59a2443c3c7b167d8817b1c3.tar.gz
anaconda-da9cdeaff26a73af59a2443c3c7b167d8817b1c3.tar.xz
anaconda-da9cdeaff26a73af59a2443c3c7b167d8817b1c3.zip
Fix thinko in displaying the first filter notebook page that disks.
Previous version had a missing break. Put the break in.
Diffstat (limited to 'iw')
-rw-r--r--iw/filter_gui.py1
1 files changed, 1 insertions, 0 deletions
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