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

Use shorter descriptions.

This commit is contained in:
Bartosz Taudul
2020-03-26 22:09:56 +01:00
parent 2db117a7ac
commit ef96ecd9b8
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -11435,9 +11435,9 @@ void View::DrawStatistics()
if( m_statMode == 0 )
{
#ifdef TRACY_EXTENDED_FONT
m_statisticsFilter.Draw( ICON_FA_FILTER " Filter zones", 200 );
m_statisticsFilter.Draw( ICON_FA_FILTER, 200 );
#else
m_statisticsFilter.Draw( "Filter zones", 200 );
m_statisticsFilter.Draw( "Filter", 200 );
#endif
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
@@ -11608,9 +11608,9 @@ void View::DrawStatistics()
else
{
#ifdef TRACY_EXTENDED_FONT
m_statisticsFilter.Draw( ICON_FA_FILTER " Filter symbols", 200 );
m_statisticsFilter.Draw( ICON_FA_FILTER, 200 );
#else
m_statisticsFilter.Draw( "Filter symbols", 200 );
m_statisticsFilter.Draw( "Filter", 200 );
#endif
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
@@ -11650,9 +11650,9 @@ void View::DrawStatistics()
ImGui::SameLine();
ImGui::TextUnformatted( "Location:" );
ImGui::SameLine();
ImGui::RadioButton( "Function entry", &m_statSampleLocation, 0 );
ImGui::RadioButton( "Entry point", &m_statSampleLocation, 0 );
ImGui::SameLine();
ImGui::RadioButton( "Instruction", &m_statSampleLocation, 1 );
ImGui::RadioButton( "Sample", &m_statSampleLocation, 1 );
ImGui::Separator();
ImGui::BeginChild( "##statisticsSampling" );