You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any possibility to make a particular window always on top of other windows so that it does not overlap with other windows ?
This is the only flag I've found so far: ImGuiWindowFlags_NoBringToFrontOnFocus
But as it turned out in ImGui there is also such a solution, but it is not in the plugin:
if (ImGui::IsWindowAppearing())
ImGui::BringWindowToDisplayFront(ImGui::GetCurrentWindow());
The text was updated successfully, but these errors were encountered:
Is there any possibility to make a particular window always on top of other windows so that it does not overlap with other windows ?
This is the only flag I've found so far:
ImGuiWindowFlags_NoBringToFrontOnFocus
But as it turned out in ImGui there is also such a solution, but it is not in the plugin:
The text was updated successfully, but these errors were encountered: