From f4584f48f9e25c7d5202e9ebf36305807f4f784a Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 6 Apr 2024 21:50:19 +1000 Subject: [PATCH] dep/imgui: Disable windowing key --- dep/imgui/src/imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep/imgui/src/imgui.cpp b/dep/imgui/src/imgui.cpp index cc06ae227..1d68b732b 100644 --- a/dep/imgui/src/imgui.cpp +++ b/dep/imgui/src/imgui.cpp @@ -12577,7 +12577,7 @@ static void ImGui::NavUpdateWindowing() bool apply_toggle_layer = false; ImGuiWindow* modal_window = GetTopMostPopupModal(); - bool allow_windowing = (modal_window == NULL); // FIXME: This prevent CTRL+TAB from being usable with windows that are inside the Begin-stack of that modal. + bool allow_windowing = false;// (modal_window == NULL); // FIXME: This prevent CTRL+TAB from being usable with windows that are inside the Begin-stack of that modal. if (!allow_windowing) g.NavWindowingTarget = NULL;