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 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/iw/filter_gui.py b/iw/filter_gui.py
index 6145cd4..0f5a42f 100644
--- a/iw/filter_gui.py
+++ b/iw/filter_gui.py
@@ -538,6 +538,7 @@ class FilterWindow(InstallWindow):
for pg in self.pages:
if pg.getNVisible():
self.notebook.set_current_page(i)
+ break
i += 1
--
1.6.5.2
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|