diff --git a/mozilla/widget/src/windows/nsWindow.cpp b/mozilla/widget/src/windows/nsWindow.cpp index 772ab3abb89..f688da09d9e 100644 --- a/mozilla/widget/src/windows/nsWindow.cpp +++ b/mozilla/widget/src/windows/nsWindow.cpp @@ -3789,7 +3789,14 @@ BOOL nsWindow::OnIMENotify(WPARAM aIMN, LPARAM aData, LRESULT *oResult) }; #endif - // not implement yet + // add hacky code here + if(IS_VK_DOWN(NS_VK_ALT)) { + mIsShiftDown = PR_FALSE; + mIsControlDown = PR_FALSE; + mIsAltDown = PR_TRUE; + DispatchKeyEvent(NS_KEY_PRESS, 0, 192);// XXX hack hack hack + } + // not implement yet return PR_FALSE; } //==========================================================================