mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 13:54:11 +02:00
Tentative fix for Alt+Gr
This commit is contained in:
parent
43d7d72f48
commit
5fd523e43f
1 changed files with 3 additions and 2 deletions
|
@ -792,7 +792,8 @@ LRESULT WinBFWindow::WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
|
||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
if ((!mIsKeyDown[VK_MENU]) && (!mIsKeyDown[VK_CONTROL]))
|
//NOTE: This line broke Alt+Gr for braces and such. Determine why this was needed.
|
||||||
|
//if ((!mIsKeyDown[VK_MENU]) && (!mIsKeyDown[VK_CONTROL]))
|
||||||
{
|
{
|
||||||
for (int i = 0; i < (lParam & 0x7FFF); i++)
|
for (int i = 0; i < (lParam & 0x7FFF); i++)
|
||||||
mKeyCharFunc(this, (WCHAR)wParam);
|
mKeyCharFunc(this, (WCHAR)wParam);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue