From fd93f244f056b5290524f61f311b4e6974b6bfa2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Sep 2022 01:03:50 +0200 Subject: [PATCH] Mark activity when find zone histogram is highlighting. --- server/TracyView_FindZone.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView_FindZone.cpp b/server/TracyView_FindZone.cpp index 12991d2f..54d2220f 100644 --- a/server/TracyView_FindZone.cpp +++ b/server/TracyView_FindZone.cpp @@ -1343,6 +1343,7 @@ void View::DrawFindZone() 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 + zonePos, dpos.y ), ImVec2( dpos.x + zonePos, dpos.y+Height-2 ), color ); + m_wasActive = true; } } }