summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-11 20:21:38 +0000
committerDana Jansens <danakj@orodu.net>2003-02-11 20:21:38 +0000
commit71f9b6cf3aa4bfa96a3303a81816a14863dc2e6a (patch)
tree768505d894586568ca5ea3e3a9d7d46b12a9bd66
parent7112755cfcda17e2c17360caf28407485e5befc0 (diff)
proper check for modifiers being released, not caring about added.
-rw-r--r--scripts/motion.py3
-rw-r--r--scripts/stackedcycle.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/scripts/motion.py b/scripts/motion.py
index ef05b279..b1e69d84 100644
--- a/scripts/motion.py
+++ b/scripts/motion.py
@@ -81,8 +81,7 @@ def _motion_grab(data):
global _motion_mask, _inmove, _inresize;
# are all the modifiers this started with still pressed?
- print _motion_mask, data.state
- if not _motion_mask == data.state:
+ if not _motion_mask & data.state:
if _inmove:
_end_move(data)
elif _inresize:
diff --git a/scripts/stackedcycle.py b/scripts/stackedcycle.py
index 1667a54a..76658ae1 100644
--- a/scripts/stackedcycle.py
+++ b/scripts/stackedcycle.py
@@ -218,7 +218,7 @@ class _cycledata:
done = 0
notreverting = 1
# have all the modifiers this started with been released?
- if not self.state == data.state:
+ if not self.state & data.state:
done = 1
elif data.action == ob.KeyAction.Press:
# has Escape been pressed?