From c2e94355f06f5c1071a34d20fbd6e37651dba9ad Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 27 Sep 2021 02:07:02 +0200 Subject: [PATCH] Add icon to samples label. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index ffd500af..3f263a94 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -11185,7 +11185,7 @@ void View::DrawFindZone() ImGui::Separator(); const bool hasSamples = m_worker.AreCallstackSamplesReady() && m_worker.GetCallstackSampleCount() > 0; - if( hasSamples && ImGui::TreeNodeEx( "Samples", ImGuiTreeNodeFlags_None ) ) + if( hasSamples && ImGui::TreeNodeEx( ICON_FA_EYE_DROPPER " Samples", ImGuiTreeNodeFlags_None ) ) { { ImGui::Checkbox( ICON_FA_STOPWATCH " Show time", &m_statSampleTime );