From fa4644553797ce573049029d421f3c9f55eab840 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 4 Mar 2018 18:44:33 +0100 Subject: [PATCH] Add label to separate found zones from rest of find dialog. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index f841393c..5bd997fa 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2937,6 +2937,8 @@ void View::DrawFindZone() } ImGui::Separator(); + ImGui::Text( "Found zones:" ); + for( auto& v : m_findZone.result ) { const bool expand = ImGui::TreeNode( m_worker.GetThreadString( v->id ) );