Recast: improve clarity for UI toggle

It was unclear whether this was for toggling all details at once, or showing toggled details on all crowds. It was the latter, improved checkbox naming.
This commit is contained in:
Kawe Mazidjatari 2024-07-12 14:49:49 +02:00
parent 533d6c33e1
commit 1c748b2227

View File

@ -1030,7 +1030,7 @@ void CrowdTool::handleMenu()
ImGui::Checkbox("Show Prox Grid", &params->m_showGrid);
ImGui::Checkbox("Show Nodes", &params->m_showNodes);
ImGui::Checkbox("Show Perf Graph", &params->m_showPerfGraph);
ImGui::Checkbox("Show Detail All", &params->m_showDetailAll);
ImGui::Checkbox("Show Details For All", &params->m_showDetailAll);
}
}