1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Expose zone name normalization as a separate setting.

This commit is contained in:
Bartosz Taudul
2022-08-15 16:24:44 +02:00
parent 89016454f8
commit 07a1383304
4 changed files with 11 additions and 7 deletions
+4 -2
View File
@@ -226,8 +226,10 @@ void View::DrawOptions()
ImGui::Indent();
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
ImGui::RadioButton( "Never", &ival, 0 );
ImGui::RadioButton( "Always", &ival, 1 );
ImGui::RadioButton( "When no space", &ival, 2 );
ImGui::RadioButton( "Always full", &ival, 1 );
ImGui::RadioButton( "Only normalize", &ival, 2 );
ImGui::RadioButton( "No space", &ival, 3 );
ImGui::RadioButton( "No space + normalize", &ival, 4 );
ImGui::PopStyleVar();
ImGui::Unindent();
m_shortenName = (ShortenName)ival;