mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
fix for bug 66742; r=joki, sr=sfraser; grab focusedWidget between keydown and keypress in case it was changed
This commit is contained in:
parent
7567c5e94d
commit
f7a4224bca
@ -1055,6 +1055,16 @@ PRBool nsMacEventHandler::HandleKeyEvent(EventRecord& aOSEvent)
|
||||
case keyDown:
|
||||
InitializeKeyEvent(keyEvent,aOSEvent,focusedWidget,NS_KEY_DOWN);
|
||||
result = focusedWidget->DispatchWindowEvent(keyEvent);
|
||||
|
||||
// get the focused widget again in case something happened to it on the previous event
|
||||
nsWindow* checkFocusedWidget = gEventDispatchHandler.GetActive();
|
||||
if (!checkFocusedWidget)
|
||||
checkFocusedWidget = mTopLevelWidget;
|
||||
|
||||
// if this isn't the same widget we had before, we should not send a keypress
|
||||
if (checkFocusedWidget != focusedWidget)
|
||||
return result;
|
||||
|
||||
//if (result == PR_FALSE) // continue processing??? talk to Tague about this (key event spec)
|
||||
{
|
||||
InitializeKeyEvent(keyEvent,aOSEvent,focusedWidget,NS_KEY_PRESS);
|
||||
|
Loading…
Reference in New Issue
Block a user