1
0
Fork 0
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:
ocornut 2025-11-05 18:40:05 +01:00
parent 1d942eb6c9
commit ff45cb5929
2 changed files with 3 additions and 3 deletions

View file

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