This commit is contained in:
mjudge%netscape.com 2000-03-04 00:27:16 +00:00
Родитель a6af9b1075
Коммит 4aa93745ce
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -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;
}
//==========================================================================