diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 2927d630..8eb87511 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2751,7 +2751,10 @@ void View::DrawFindZone() if( !m_findZone.match.empty() ) { ImGui::Separator(); - if( ImGui::TreeNode( "Matched source locations" ) ) + bool expand = ImGui::TreeNode( "Matched source locations" ); + ImGui::SameLine(); + ImGui::TextDisabled( "(%zu)", m_findZone.match.size() ); + if( expand ) { auto prev = m_findZone.selMatch; int idx = 0;