From 1c748b2227731356328997cff1aaf2598b65d8a2 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:49:49 +0200 Subject: [PATCH] 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. --- src/naveditor/CrowdTool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/naveditor/CrowdTool.cpp b/src/naveditor/CrowdTool.cpp index 4ede8057..88319779 100644 --- a/src/naveditor/CrowdTool.cpp +++ b/src/naveditor/CrowdTool.cpp @@ -1030,7 +1030,7 @@ void CrowdTool::handleMenu() ImGui::Checkbox("Show Prox Grid", ¶ms->m_showGrid); ImGui::Checkbox("Show Nodes", ¶ms->m_showNodes); ImGui::Checkbox("Show Perf Graph", ¶ms->m_showPerfGraph); - ImGui::Checkbox("Show Detail All", ¶ms->m_showDetailAll); + ImGui::Checkbox("Show Details For All", ¶ms->m_showDetailAll); } }