dep/imgui: Disable windowing key
This commit is contained in:
parent
99b0fb5911
commit
f4584f48f9
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue