Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr

This commit is contained in:
Just van Rossum 1999-12-15 14:55:16 +00:00
parent 153a27ceb2
commit 1a5eb04d47
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ class Application:
wid = FrontWindow() wid = FrontWindow()
if wid and self._windows.has_key(wid): if wid and self._windows.has_key(wid):
window = self._windows[wid] window = self._windows[wid]
window.do_activate(modifiers & 1, event) window.do_activate(message & 1, event)
def do_kHighLevelEvent(self, event): def do_kHighLevelEvent(self, event):
(what, message, when, where, modifiers) = event (what, message, when, where, modifiers) = event