From 3a562ae6c9b19265dcefaccdb53dcea8e3687dda Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 19 Feb 2019 16:37:34 +0100 Subject: [PATCH] Fix display of unresolved call stack frames. --- server/TracyView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 87dcdb20..021c4939 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -7113,6 +7113,9 @@ void View::DrawCallstackWindow() auto frameData = m_worker.GetCallstackFrame( entry ); if( !frameData ) { + ImGui::Separator(); + ImGui::Text( "%i", fidx++ ); + ImGui::NextColumn(); char buf[32]; sprintf( buf, "%p", (void*)entry ); ImGui::TextUnformatted( buf );