aboutsummaryrefslogtreecommitdiff
path: root/components/__base__.py
diff options
context:
space:
mode:
authortassaron2017-06-03 20:39:32 -0400
committertassaron2017-06-03 20:39:32 -0400
commit825b7af6e30deaf85646ce93507d8cb5a0b426ae (patch)
treeafc27ab315d955ec0ff5185cbeaa6eb7fed8af2f /components/__base__.py
parentcf197904b82d6f5769f23c15d047d22a2bd46644 (diff)
start of background replacement components
Diffstat (limited to 'components/__base__.py')
-rw-r--r--components/__base__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/__base__.py b/components/__base__.py
index 45512ce..45c148d 100644
--- a/components/__base__.py
+++ b/components/__base__.py
@@ -66,4 +66,10 @@ class Component:
def savePreset(self):
return {}
+
+ def cancel(self):
+ self.canceled = True
+
+ def reset(self):
+ self.canceled = False
'''