aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client
diff options
context:
space:
mode:
authorKaoruBoy <kaoruboyvrc@gmail.com>2026-03-06 20:00:53 +0100
committerGitHub <noreply@github.com>2026-03-06 13:00:53 -0600
commit015c368fc1e8ad09d47fbe54b2c256a4b84015d4 (patch)
tree67005712c41f81d080ff9df73d07bddc6d1584af /Minecraft.Client
parent9cbbae1c3e4def3f1bb4adcb5aac7b5369ea6bc4 (diff)
Don't block KEYDOWN messages (#698)
Diffstat (limited to 'Minecraft.Client')
-rw-r--r--Minecraft.Client/Windows64/Windows64_Minecraft.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
index 208fd3f7..84404106 100644
--- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
+++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp
@@ -604,7 +604,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
else if (vk == VK_MENU)
vk = (lParam & (1 << 24)) ? VK_RMENU : VK_LMENU;
g_KBMInput.OnKeyDown(vk);
- break;
+ return DefWindowProc(hWnd, message, wParam, lParam);
}
case WM_KEYUP:
case WM_SYSKEYUP: