Fix unused variable warning in ImGui::EndListBox() (#3897)

This commit is contained in:
C.Even 2021-03-11 17:04:50 +08:00 committed by GitHub
parent 6ba1334903
commit a3ebd160cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6220,6 +6220,7 @@ void ImGui::EndListBox()
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT((window->Flags & ImGuiWindowFlags_ChildWindow) && "Mismatched BeginListBox/EndListBox calls. Did you test the return value of BeginListBox?");
IM_UNUSED(window);
EndChildFrame();
EndGroup(); // This is only required to be able to do IsItemXXX query on the whole ListBox including label