From 235da1eded679e609a4fe4704c1d2c241b698101 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 18 Aug 2018 20:01:57 +0200 Subject: [PATCH] Use focused text for source locations count. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 0377e94c..ca4a9aef 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -5945,7 +5945,7 @@ void View::DrawStatistics() break; } - ImGui::Text( "Recorded source locations: %s", RealToString( srcloc.size(), true ) ); + TextFocused( "Recorded source locations:", RealToString( srcloc.size(), true ) ); ImGui::Columns( 5 ); ImGui::Separator();