summaryrefslogtreecommitdiff
path: root/scripts/stackedcycle.py
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-04 10:34:20 +0000
committerDana Jansens <danakj@orodu.net>2003-02-04 10:34:20 +0000
commit9ae12978f42cb014c05a2b3a8077703557a8643e (patch)
treeebe6e6102fb4481b9e4582a1c27b844c915bb5f7 /scripts/stackedcycle.py
parentc0b0c00408d2ef2c0214f8aeb760c4dbe0fa37c4 (diff)
simple possible bugfix? meh
Diffstat (limited to 'scripts/stackedcycle.py')
-rw-r--r--scripts/stackedcycle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/stackedcycle.py b/scripts/stackedcycle.py
index 757154a6..7e90cb1b 100644
--- a/scripts/stackedcycle.py
+++ b/scripts/stackedcycle.py
@@ -217,7 +217,7 @@ class cycledata:
not self.state & data.state):
done = 1
# has Escape been pressed?
- if data.action == ob.KeyAction.Press and data.key == "Escape":
+ elif data.action == ob.KeyAction.Press and data.key == "Escape":
done = 1
# revert
self.menupos = 0