From d9f04c97535aced042da70ccfeef4136d890779b Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Mon, 11 Feb 2013 14:14:28 +0100 Subject: Update all spokes on a Hub when spoke is exited --- pyanaconda/ui/gui/hubs/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyanaconda/ui/gui/hubs/__init__.py b/pyanaconda/ui/gui/hubs/__init__.py index d7a91dd7c..f41cad72a 100644 --- a/pyanaconda/ui/gui/hubs/__init__.py +++ b/pyanaconda/ui/gui/hubs/__init__.py @@ -388,7 +388,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. -- cgit