From 8db30a9016e477a93224a02462af20b456c98e68 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 18 Aug 2018 00:09:23 +0200 Subject: [PATCH] Add icon to statistics menu. --- server/TracyView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index cb0b89ab..6294dd89 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -5673,7 +5673,11 @@ void View::DrawStatistics() return; } +#ifdef TRACY_EXTENDED_FONT + ImGui::Checkbox( ICON_FA_CLOCK " Show self times", &m_statSelf ); +#else ImGui::Checkbox( "Show self times", &m_statSelf ); +#endif auto& slz = m_worker.GetSourceLocationZones(); Vector srcloc;