Skip to content

Instantly share code, notes, and snippets.

@Sean-Bradley
Last active April 12, 2019 12:31
Show Gist options
  • Save Sean-Bradley/31184d019415bd1082209c72da568f0b to your computer and use it in GitHub Desktop.
Save Sean-Bradley/31184d019415bd1082209c72da568f0b to your computer and use it in GitHub Desktop.
class Slider(IUndoRedo):
"""The Invoker Class"""
def __init__(self):
self._commands = {}
self._history = [(0.0, "OFF", ())] # A default setting of OFF
self._history_position = 0 # The position that is used for UNDO/REDO
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment