1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Fixed minor warning.

This commit is contained in:
ocornut 2023-09-04 15:16:55 +02:00
parent fef3389157
commit c6e0284ac5

View file

@ -4833,7 +4833,7 @@ static void ShowDemoWindowTables()
ImGui::TableNextColumn();
ImGui::Text("CellPadding.y = %.2f", style.CellPadding.y);
if ((row % 3) == 2)
ImGui::PopStyleVar();;
ImGui::PopStyleVar();
}
ImGui::EndTable();
}