From 9ae12978f42cb014c05a2b3a8077703557a8643e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 4 Feb 2003 10:34:20 +0000 Subject: [PATCH] simple possible bugfix? meh --- scripts/stackedcycle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.44.0