From e083b2773a8348892975732f98b366e51c8c242b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 28 Dec 2019 17:24:11 +0100 Subject: [PATCH] Add icon to zone time range display. --- server/TracyView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index fae8c0c3..3f587d65 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -8057,6 +8057,10 @@ void View::DrawFindZone() } if( m_findZone.limitRange ) { +#ifdef TRACY_EXTENDED_FONT + ImGui::TextUnformatted( ICON_FA_LOCK ); + ImGui::SameLine(); +#endif TextFocused( "Zone time range:", TimeToString( m_findZone.rangeMin ) ); ImGui::SameLine(); TextFocused( "-", TimeToString( m_findZone.rangeMax ) );