mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Use enum names in radio button list.
This commit is contained in:
parent
061b5c77ce
commit
4a7f6e0cc1
@ -228,11 +228,11 @@ void View::DrawOptions()
|
||||
ImGui::TextUnformatted( ICON_FA_RULER_HORIZONTAL " Zone name shortening" );
|
||||
ImGui::Indent();
|
||||
ImGui::PushStyleVar( ImGuiStyleVar_FramePadding, ImVec2( 0, 0 ) );
|
||||
ImGui::RadioButton( "Disabled", &ival, 0 );
|
||||
ImGui::RadioButton( "Minimal length", &ival, 1 );
|
||||
ImGui::RadioButton( "Only normalize", &ival, 2 );
|
||||
ImGui::RadioButton( "As needed", &ival, 3 );
|
||||
ImGui::RadioButton( "As needed + normalize", &ival, 4 );
|
||||
ImGui::RadioButton( "Disabled", &ival, (uint8_t)ShortenName::Never );
|
||||
ImGui::RadioButton( "Minimal length", &ival, (uint8_t)ShortenName::Always );
|
||||
ImGui::RadioButton( "Only normalize", &ival, (uint8_t)ShortenName::OnlyNormalize );
|
||||
ImGui::RadioButton( "As needed", &ival, (uint8_t)ShortenName::NoSpace );
|
||||
ImGui::RadioButton( "As needed + normalize", &ival, (uint8_t)ShortenName::NoSpaceAndNormalize );
|
||||
ImGui::PopStyleVar();
|
||||
ImGui::Unindent();
|
||||
m_shortenName = (ShortenName)ival;
|
||||
|
Loading…
Reference in New Issue
Block a user