diff options
author | Martin Sivak <msivak@redhat.com> | 2013-02-01 16:55:11 +0100 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2013-02-01 16:55:11 +0100 |
commit | 8ab51b32a401e28f79c1de1c123bf90b19d12fc4 (patch) | |
tree | ff74a4d8e73a7227b265d78f5665fa5a8a1a28b5 | |
parent | 5a7505294e108753db397abbc88e78b07aa21607 (diff) | |
download | anaconda-firstboot-support.tar.gz anaconda-firstboot-support.tar.xz anaconda-firstboot-support.zip |
Update the status of all spokes after spoke is closedfirstboot-support
-rw-r--r-- | pyanaconda/ui/gui/hubs/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyanaconda/ui/gui/hubs/__init__.py b/pyanaconda/ui/gui/hubs/__init__.py index 39e8705f5..13793150e 100644 --- a/pyanaconda/ui/gui/hubs/__init__.py +++ b/pyanaconda/ui/gui/hubs/__init__.py @@ -376,7 +376,8 @@ class Hub(GUIObject, common.Hub): # Now update the selector with the current status and completeness. if not spoke.indirect: - self._updateCompleteness(spoke) + for sp in self._spokes.itervalues(): + self._updateCompleteness(sp) # And then if that spoke wants us to jump straight to another one, # handle that now. |