1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Check item map too for hidden items.

This commit is contained in:
Bartosz Taudul 2022-09-03 23:43:26 +02:00
parent 10faf16aee
commit e41deb1ff6
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -197,6 +197,18 @@ void View::DrawNotificationArea()
break;
}
}
if( !hidden )
{
for( auto& v : m_tc.GetItemMap() )
{
if( !v.second->IsVisible() )
{
hidden = true;
break;
}
}
}
if( hidden )
{
ImGui::SameLine();