[PATCH 7/8] Make sure the software listboxes are shown

Brian C. Lane bcl at redhat.com
Thu Jul 10 00:06:12 UTC 2014


The second time the spoke is shown the listboxes aren't being displayed,
even though all the rows have been filled. So call show_all on them to
make sure they are displayed.
---
 pyanaconda/ui/gui/spokes/software.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pyanaconda/ui/gui/spokes/software.py b/pyanaconda/ui/gui/spokes/software.py
index f68dfd6..4ca6378 100644
--- a/pyanaconda/ui/gui/spokes/software.py
+++ b/pyanaconda/ui/gui/spokes/software.py
@@ -309,6 +309,8 @@ class SoftwareSelectionSpoke(NormalSpoke):
             firstEnvironment = False
 
         self.refreshAddons()
+        self._environmentListBox.show_all()
+        self._addonListBox.show_all()
 
     def _addAddon(self, grp):
         (name, desc) = self.payload.groupDescription(grp)
-- 
1.9.3



More information about the anaconda-patches mailing list