From e8a0676c0b49766f77fa2ff8d850d94a3efd6db3 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 24 May 2026 13:35:48 +0200 Subject: [PATCH] Fix regression that made propagate inlines always disabled if no child calls. --- profiler/src/profiler/TracySourceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracySourceView.cpp b/profiler/src/profiler/TracySourceView.cpp index cf69a351..82238d75 100644 --- a/profiler/src/profiler/TracySourceView.cpp +++ b/profiler/src/profiler/TracySourceView.cpp @@ -1066,8 +1066,8 @@ void SourceView::RenderSymbolView( Worker& worker, View& view ) ImGui::PushStyleVar( ImGuiStyleVar_Alpha, ImGui::GetStyle().Alpha * 0.5f ); m_childCalls = false; m_childCallList = false; - m_propagateInlines = false; } + if( !samplesReady ) m_propagateInlines = false; SmallCheckbox( ICON_FA_RIGHT_FROM_BRACKET " Child calls", &m_childCalls ); if( !samplesReady ) {