Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-28 02:03:50 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-28 02:12:05 +0300
commitfd93f244f056b5290524f61f311b4e6974b6bfa2 (patch)
tree04a114618e4043d934a7451479e0cd63df772cfb /server/TracyView_FindZone.cpp
parent8117d7d4d45546dfe08f78f46649b2b17283d58e (diff)
Mark activity when find zone histogram is highlighting.
Diffstat (limited to 'server/TracyView_FindZone.cpp')
-rw-r--r--server/TracyView_FindZone.cpp1
1 files changed, 1 insertions, 0 deletions
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;
}
}
}