Skip to content

Commit

Permalink
Prevent spokes from being exited more times.
Browse files Browse the repository at this point in the history
Thank you davidshea for help.
  • Loading branch information
jkonecny12 committed Mar 25, 2015
1 parent 64d103d commit 9c40bff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyanaconda/ui/gui/hubs/__init__.py
Expand Up @@ -364,6 +364,10 @@ def _on_spoke_clicked(self, selector, event, spoke):
self.main_window.enterSpoke(spoke)

def spoke_done(self, spoke):
# Ignore if not in a spoke
if not self._inSpoke:
return

spoke.visitedSinceApplied = True

# Don't take visitedSinceApplied into account here. It will always be
Expand Down

0 comments on commit 9c40bff

Please sign in to comment.