mirror of
https://github.com/wolfpld/tracy.git
synced 2026-06-08 00:23:47 +00:00
Use proper wait stacks grouping variable.
This commit is contained in:
@@ -625,7 +625,7 @@ void View::DrawWaitStacks()
|
||||
case 1:
|
||||
{
|
||||
SmallCheckbox( ICON_FA_LAYER_GROUP " Group by function name", &m_groupWaitStackBottomUp );
|
||||
auto tree = GetCallstackFrameTreeBottomUp( stacks, m_groupCallstackTreeByNameBottomUp );
|
||||
auto tree = GetCallstackFrameTreeBottomUp( stacks, m_groupWaitStackBottomUp );
|
||||
if( !tree.empty() )
|
||||
{
|
||||
int idx = 0;
|
||||
@@ -640,7 +640,7 @@ void View::DrawWaitStacks()
|
||||
case 2:
|
||||
{
|
||||
SmallCheckbox( ICON_FA_LAYER_GROUP " Group by function name", &m_groupWaitStackTopDown );
|
||||
auto tree = GetCallstackFrameTreeTopDown( stacks, m_groupCallstackTreeByNameTopDown );
|
||||
auto tree = GetCallstackFrameTreeTopDown( stacks, m_groupWaitStackTopDown );
|
||||
if( !tree.empty() )
|
||||
{
|
||||
int idx = 0;
|
||||
|
||||
Reference in New Issue
Block a user