dep/imgui: Disable windowing key

This commit is contained in:
Stenzek 2024-04-06 21:50:19 +10:00
parent 99b0fb5911
commit f4584f48f9
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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;