1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Implement direct children search.

This commit is contained in:
Bartosz Taudul
2022-07-23 13:31:41 +02:00
parent 57f03dfe9a
commit f7598d2431
3 changed files with 23 additions and 5 deletions
+1 -5
View File
@@ -881,11 +881,7 @@ void View::DrawZoneInfoWindow()
ImGui::TableHeadersRow();
do
{
if( m_messagesExcludeChildren )
{
auto msgzone = FindZoneAtTime( tid, (*msgit)->time );
if( msgzone != &ev ) continue;
}
if( m_messagesExcludeChildren && GetZoneChild( ev, (*msgit)->time ) ) continue;
ImGui::PushID( *msgit );
ImGui::TableNextRow();
ImGui::TableNextColumn();