mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Viewports: rename FindViewportByID() parameter for clarity.
This commit is contained in:
parent
1d942eb6c9
commit
ff45cb5929
2 changed files with 3 additions and 3 deletions
|
|
@ -16356,11 +16356,11 @@ ImGuiViewport* ImGui::GetMainViewport()
|
|||
}
|
||||
|
||||
// FIXME: This leaks access to viewports not listed in PlatformIO.Viewports[]. Problematic? (#4236)
|
||||
ImGuiViewport* ImGui::FindViewportByID(ImGuiID id)
|
||||
ImGuiViewport* ImGui::FindViewportByID(ImGuiID viewport_id)
|
||||
{
|
||||
ImGuiContext& g = *GImGui;
|
||||
for (ImGuiViewportP* viewport : g.Viewports)
|
||||
if (viewport->ID == id)
|
||||
if (viewport->ID == viewport_id)
|
||||
return viewport;
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue