diff options
author | Just van Rossum <just@lettererror.com> | 1999-12-15 14:55:16 (GMT) |
---|---|---|
committer | Just van Rossum <just@lettererror.com> | 1999-12-15 14:55:16 (GMT) |
commit | 1a5eb04d479320fdf01829dfc8e35adf789cc837 (patch) | |
tree | dd0520dd1944286ad6d019327ccc5403d78b5eb6 /Mac/Lib | |
parent | 153a27ceb2b53056d3bd4b0b3e8058d94acdadae (diff) | |
download | cpython-1a5eb04d479320fdf01829dfc8e35adf789cc837.zip cpython-1a5eb04d479320fdf01829dfc8e35adf789cc837.tar.gz cpython-1a5eb04d479320fdf01829dfc8e35adf789cc837.tar.bz2 |
Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr
Diffstat (limited to 'Mac/Lib')
-rw-r--r-- | Mac/Lib/FrameWork.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py index 42ef128..c073abd 100644 --- a/Mac/Lib/FrameWork.py +++ b/Mac/Lib/FrameWork.py @@ -379,7 +379,7 @@ class Application: wid = FrontWindow() if wid and self._windows.has_key(wid): window = self._windows[wid] - window.do_activate(modifiers & 1, event) + window.do_activate(message & 1, event) def do_kHighLevelEvent(self, event): (what, message, when, where, modifiers) = event |