From b4bfdb7872017c3960c338364fe4869a1a9e01d3 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 17 Mar 2019 02:56:26 +0100 Subject: [PATCH] Dim information about no memory events. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index b2090897..3b8be079 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4398,7 +4398,7 @@ void View::DrawZoneInfoWindow() const auto fDist = std::distance( fit, fend ); if( aDist == 0 && fDist == 0 ) { - ImGui::TextUnformatted( "No memory events." ); + TextDisabledUnformatted( "No memory events." ); } else { @@ -4431,7 +4431,7 @@ void View::DrawZoneInfoWindow() if( nAlloc == 0 && nFree == 0 ) { - ImGui::TextUnformatted( "No memory events." ); + TextDisabledUnformatted( "No memory events." ); } else {