From 99f2d0e0599db37a4ff3774eb9000161207df0f4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 27 Sep 2021 01:54:37 +0200 Subject: [PATCH] Fix vertical spacing in inline symbols list. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 363b0916..ffd500af 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -13496,11 +13496,11 @@ void View::DrawSamplesStatistics(Vector& data, int64_t timeRange, Accum ImGui::Indent(); for( auto& iv : inSymList ) { - ImGui::TableNextRow(); - ImGui::TableNextColumn(); const auto cnt = accumulationMode == AccumulationMode::SelfOnly ? iv.excl : iv.incl; if( cnt > 0 || showAll ) { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); auto sit = symMap.find( iv.symAddr ); assert( sit != symMap.end() ); name = m_worker.GetString( sit->second.name );