mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-16 12:03:27 +01:00
This commit is contained in:
parent
685ca27d84
commit
7b3d379819
19
imgui.cpp
19
imgui.cpp
@ -6161,20 +6161,19 @@ void ImGui::FocusWindow(ImGuiWindow* window)
|
|||||||
// Close popups if any
|
// Close popups if any
|
||||||
ClosePopupsOverWindow(window, false);
|
ClosePopupsOverWindow(window, false);
|
||||||
|
|
||||||
|
// Move the root window to the top of the pile
|
||||||
|
IM_ASSERT(window == NULL || window->RootWindow != NULL);
|
||||||
|
ImGuiWindow* focus_front_window = window ? window->RootWindow : NULL; // NB: In docking branch this is window->RootWindowDockStop
|
||||||
|
ImGuiWindow* display_front_window = window ? window->RootWindow : NULL;
|
||||||
|
|
||||||
|
// Steal focus on active widgets
|
||||||
|
if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != focus_front_window)
|
||||||
|
ClearActiveID();
|
||||||
|
|
||||||
// Passing NULL allow to disable keyboard focus
|
// Passing NULL allow to disable keyboard focus
|
||||||
if (!window)
|
if (!window)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Move the root window to the top of the pile
|
|
||||||
IM_ASSERT(window->RootWindow != NULL);
|
|
||||||
ImGuiWindow* focus_front_window = window->RootWindow; // NB: In docking branch this is window->RootWindowDockStop
|
|
||||||
ImGuiWindow* display_front_window = window->RootWindow;
|
|
||||||
|
|
||||||
// Steal focus on active widgets
|
|
||||||
if (focus_front_window->Flags & ImGuiWindowFlags_Popup) // FIXME: This statement may be unnecessary? Need further testing before removing it..
|
|
||||||
if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != focus_front_window)
|
|
||||||
ClearActiveID();
|
|
||||||
|
|
||||||
// Bring to front
|
// Bring to front
|
||||||
BringWindowToFocusFront(focus_front_window);
|
BringWindowToFocusFront(focus_front_window);
|
||||||
if (((window->Flags | display_front_window->Flags) & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0)
|
if (((window->Flags | display_front_window->Flags) & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user