mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Inline frames limit was raised to 64 in 7552341ff
.
This commit is contained in:
parent
1d7afbd07e
commit
85d541124e
@ -244,8 +244,8 @@ int View::DispatchGhostLevel( const Vector<GhostZone>& vec, bool hover, double p
|
||||
const auto offset = _offset + ostep * depth;
|
||||
|
||||
const auto yPos = wpos.y + offset;
|
||||
// Inline frames have to be taken into account, hence the multiply by 16 (arbitrary limit for inline frames in client)
|
||||
if( yPos + 16 * ostep >= yMin && yPos <= yMax )
|
||||
// Inline frames have to be taken into account, hence the multiply by 64 (arbitrary limit for inline frames in client)
|
||||
if( yPos + 64 * ostep >= yMin && yPos <= yMax )
|
||||
{
|
||||
return DrawGhostLevel( vec, hover, pxns, nspx, wpos, _offset, depth, yMin, yMax, tid );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user