Commit 1a5eb04d authored by Just van Rossum's avatar Just van Rossum

Fixed buglet in Application.do_suspendresume(), it took the wrong flag to...

Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr
parent 153a27ce
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment