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::TableNextColumn();
ImGui::Text("CellPadding.y = %.2f", style.CellPadding.y); ImGui::Text("CellPadding.y = %.2f", style.CellPadding.y);
if ((row % 3) == 2) if ((row % 3) == 2)
ImGui::PopStyleVar();; ImGui::PopStyleVar();
} }
ImGui::EndTable(); ImGui::EndTable();
} }