From 29c7b5f259a7de8ecb629a8ba229eca79172c022 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Sep 2022 01:07:42 +0200 Subject: [PATCH] Mark activity on frame times histogram highlight. --- server/TracyView_TraceInfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView_TraceInfo.cpp b/server/TracyView_TraceInfo.cpp index 6c8e5bcc..9240d12c 100644 --- a/server/TracyView_TraceInfo.cpp +++ b/server/TracyView_TraceInfo.cpp @@ -675,6 +675,7 @@ void View::DrawInfo() const auto c = uint32_t( ( sin( s_time * 10 ) * 0.25 + 0.75 ) * 255 ); const auto color = 0xFF000000 | ( c << 16 ) | ( c << 8 ) | c; DrawLine( draw, ImVec2( dpos.x + framePos, dpos.y ), ImVec2( dpos.x + framePos, dpos.y+Height-2 ), color ); + m_wasActive = true; } } }