From fe675b91be4b3917ea0d9a986cc2ae07bf0fdb7c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 26 Mar 2019 20:19:56 +0100 Subject: [PATCH] Ditto for frame counts. --- server/TracyView.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 70b910b5..59968688 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -8519,9 +8519,7 @@ void View::DrawInfo() ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) ); ImGui::SameLine(); ImGui::TextDisabled( "(%s FPS - %s FPS)", RealToString( round( 1000000000.0 / t0 ), true ), RealToString( round( 1000000000.0 / t1 ), true ) ); - TextDisabledUnformatted( "Count:" ); - ImGui::SameLine(); - ImGui::Text( "%" PRIu64, bins[bin] ); + TextFocused( "Count:", RealToString( bins[bin], true ) ); ImGui::EndTooltip(); } }