From 20a7bf2b23fba8e5ebf766f42e83cbf88264fbdd Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 14 Mar 2020 02:06:39 +0100 Subject: [PATCH] There are no parents for mid-stack frames. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 9772c790..4d26753b 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -11367,7 +11367,7 @@ void View::DrawStatistics() #endif ImGui::SameLine(); } - if( v->first == 0 ) + if( v->first == 0 || v->second.excl == 0 ) { ImGui::TextUnformatted( name ); }