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 );