mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Disable Dear ImGui 'ctrl+tab' shortcut menu
This menu isn't in much need, in fact; we didn't even knew it existed until someone started to complain about it! Currently, the drawing logic isn't setup to support this properly either. Disabled the shortcut menu.
This commit is contained in:
parent
70d20db811
commit
c86c965290
@ -248,6 +248,13 @@ void DrawImGui()
|
||||
|
||||
ImGui::NewFrame();
|
||||
|
||||
// This is required to disable the ctrl+tab menu as some users use this shortcut for other things in-game.
|
||||
// See https://github.com/ocornut/imgui/issues/5641 for more details.
|
||||
if (GImGui->ConfigNavWindowingKeyNext)
|
||||
ImGui::SetShortcutRouting(GImGui->ConfigNavWindowingKeyNext, ImGuiKeyOwner_None);
|
||||
if (GImGui->ConfigNavWindowingKeyPrev)
|
||||
ImGui::SetShortcutRouting(GImGui->ConfigNavWindowingKeyPrev, ImGuiKeyOwner_None);
|
||||
|
||||
g_pBrowser->RunTask();
|
||||
g_pConsole->RunTask();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user