From 1a5eb04d479320fdf01829dfc8e35adf789cc837 Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Wed, 15 Dec 1999 14:55:16 +0000 Subject: [PATCH] Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr --- Mac/Lib/FrameWork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py index 42ef1280d44..c073abd7f4d 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