From 257a836dc7739eab69adfe6c936ea3715d5df74c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 15 Aug 2022 20:47:59 +0200 Subject: [PATCH] Adjust zone name shortening option names. "Always full" was kinda ambiguous. It could either mean that the name will be always full (shortening effectively disabled), or that the shortening will be performed to the maximum extent (as it was). --- server/TracyView_Options.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/TracyView_Options.cpp b/server/TracyView_Options.cpp index 8a39e1ea..549971a8 100644 --- a/server/TracyView_Options.cpp +++ b/server/TracyView_Options.cpp @@ -225,11 +225,11 @@ void View::DrawOptions() ImGui::TextUnformatted( ICON_FA_RULER_HORIZONTAL " Zone name shortening" ); ImGui::Indent(); ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) ); - ImGui::RadioButton( "Never", &ival, 0 ); - ImGui::RadioButton( "Always full", &ival, 1 ); + ImGui::RadioButton( "Disabled", &ival, 0 ); + ImGui::RadioButton( "Minimal length", &ival, 1 ); ImGui::RadioButton( "Only normalize", &ival, 2 ); - ImGui::RadioButton( "No space", &ival, 3 ); - ImGui::RadioButton( "No space + normalize", &ival, 4 ); + ImGui::RadioButton( "As needed", &ival, 3 ); + ImGui::RadioButton( "As needed + normalize", &ival, 4 ); ImGui::PopStyleVar(); ImGui::Unindent(); m_shortenName = (ShortenName)ival;