mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Fix unused variable warning in ImGui::EndListBox() (#3897)
This commit is contained in:
parent
6ba1334903
commit
a3ebd160cb
@ -6220,6 +6220,7 @@ void ImGui::EndListBox()
|
|||||||
ImGuiContext& g = *GImGui;
|
ImGuiContext& g = *GImGui;
|
||||||
ImGuiWindow* window = g.CurrentWindow;
|
ImGuiWindow* window = g.CurrentWindow;
|
||||||
IM_ASSERT((window->Flags & ImGuiWindowFlags_ChildWindow) && "Mismatched BeginListBox/EndListBox calls. Did you test the return value of BeginListBox?");
|
IM_ASSERT((window->Flags & ImGuiWindowFlags_ChildWindow) && "Mismatched BeginListBox/EndListBox calls. Did you test the return value of BeginListBox?");
|
||||||
|
IM_UNUSED(window);
|
||||||
|
|
||||||
EndChildFrame();
|
EndChildFrame();
|
||||||
EndGroup(); // This is only required to be able to do IsItemXXX query on the whole ListBox including label
|
EndGroup(); // This is only required to be able to do IsItemXXX query on the whole ListBox including label
|
||||||
|
Loading…
Reference in New Issue
Block a user