Skip to content

Commit 9504068

Browse files
Aemonyocornut
authored andcommitted
Backends: Win32: fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN (#7768, #4858, #2622)
Amend 0755767 The `ImGui_ImplWin32_UpdateKeyModifiers()` function maps `ImGuiMod_Super` to `VK_APPS`, the "Application" key located between the Right Windows (Super) and Right Control keys on the keyboard, see https://conemu.github.io/en/AppsKey.html This means that when using `ImGui::GetIO().KeySuper` to try to get the down state of the `VK_RWIN` or `VK_LWIN` keys, it'll always return FALSE when either of those keys are held down, and only return TRUE when `VK_APPS` is held down.
1 parent 6b6026b commit 9504068

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

backends/imgui_impl_win32.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
// CHANGELOG
2323
// (minor and older changes stripped away, please see git history for details)
24+
// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768)
2425
// 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys, app back/forward keys.
2526
// 2023-09-25: Inputs: Synthesize key-down event on key-up for VK_SNAPSHOT / ImGuiKey_PrintScreen as Windows doesn't emit it (same behavior as GLFW/SDL).
2627
// 2023-09-07: Inputs: Added support for keyboard codepage conversion for when application is compiled in MBCS mode and using a non-Unicode window.
@@ -294,7 +295,7 @@ static void ImGui_ImplWin32_UpdateKeyModifiers()
294295
io.AddKeyEvent(ImGuiMod_Ctrl, IsVkDown(VK_CONTROL));
295296
io.AddKeyEvent(ImGuiMod_Shift, IsVkDown(VK_SHIFT));
296297
io.AddKeyEvent(ImGuiMod_Alt, IsVkDown(VK_MENU));
297-
io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_APPS));
298+
io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_LWIN) || IsVkDown(VK_RWIN));
298299
}
299300

300301
static void ImGui_ImplWin32_UpdateMouseData()

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ Other changes:
6060
Debug log entries add a imgui frame counter prefix + are redirected to ShowDebugLogWindow() and
6161
other configurable locations. Always call IMGUI_DEBUG_LOG() for maximum stripping in caller code.
6262
- Debug Tools: Debug Log: Added "Configure Outputs.." button. (#5855)
63+
- Backends: Win32: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN.
64+
(#7768, #4858, #2622) [@Aemony]
6365
- Backends: SDL3: Update for API changes: SDLK_x renames and SDLK_KP_x removals (#7761, #7762)
6466
- Backends: SDL2,SDL3,OSX: Update for io.SetPlatformImeDataFn() -> io.PlatformSetImeDataFn() rename.
6567
- Backends: GLFW,SDL2: Added io.PlatformOpenInShellFn handler for web/Emscripten versions. (#7660)

0 commit comments

Comments
 (0)