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

Use "self time" consistently in the UI.

This commit is contained in:
Bartosz Taudul
2020-03-14 01:38:46 +01:00
parent 4631d884d6
commit 5046664b8b
2 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -6575,7 +6575,7 @@ void View::DrawZoneInfoWindow()
if( expand )
{
ImGui::SameLine();
if( SmallCheckbox( "Exclusive time", &m_timeDist.exclusiveTime ) ) m_timeDist.dataValidFor = nullptr;
if( SmallCheckbox( "Self time", &m_timeDist.exclusiveTime ) ) m_timeDist.dataValidFor = nullptr;
if( ctx )
{
ImGui::SameLine();
@@ -11123,9 +11123,9 @@ void View::DrawStatistics()
ImGui::Spacing();
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
ImGui::Checkbox( ICON_FA_CLOCK " Show self times", &m_statSelf );
ImGui::Checkbox( ICON_FA_CLOCK " Self time", &m_statSelf );
#else
ImGui::Checkbox( "Show self times", &m_statSelf );
ImGui::Checkbox( "Self time", &m_statSelf );
#endif
ImGui::Separator();
@@ -11233,9 +11233,9 @@ void View::DrawStatistics()
ImGui::Spacing();
ImGui::SameLine();
#ifdef TRACY_EXTENDED_FONT
ImGui::Checkbox( ICON_FA_CLOCK " Exclusive", &m_statSelf );
ImGui::Checkbox( ICON_FA_CLOCK " Self time", &m_statSelf );
#else
ImGui::Checkbox( "Exclusive", &m_statSelf );
ImGui::Checkbox( "Self time", &m_statSelf );
#endif
ImGui::SameLine();
ImGui::Spacing();