ShowTestWindow() minor tweak

This commit is contained in:
ocornut 2015-03-06 22:43:42 +00:00
parent 4ab2db73e5
commit 1f272785f1

View File

@ -8805,8 +8805,8 @@ void ImGui::ShowTestWindow(bool* opened)
ImGui::PushItemWidth(80); ImGui::PushItemWidth(80);
ImGui::Text("Lists:"); ImGui::Text("Lists:");
static int selection[5] = { -1, 0, 1, 2, 3 }; static int selection[4] = { 0, 1, 2, 3 };
for (int i = 0; i < 5; i++) for (int i = 0; i < 4; i++)
{ {
if (i > 0) ImGui::SameLine(); if (i > 0) ImGui::SameLine();
ImGui::PushID(i); ImGui::PushID(i);