diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-04 10:34:20 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-04 10:34:20 +0000 |
| commit | 9ae12978f42cb014c05a2b3a8077703557a8643e (patch) | |
| tree | ebe6e6102fb4481b9e4582a1c27b844c915bb5f7 | |
| parent | c0b0c00408d2ef2c0214f8aeb760c4dbe0fa37c4 (diff) | |
simple possible bugfix? meh
| -rw-r--r-- | scripts/stackedcycle.py | 2 |
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 |
