From 9aecd43f242143c020b748de770d2478f8ca0b51 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 3 Feb 2020 19:34:51 +0100 Subject: [PATCH] Display exact time in find zone range limit information. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 78443934..8291649f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -8152,9 +8152,9 @@ void View::DrawFindZone() ImGui::TextUnformatted( ICON_FA_LOCK ); ImGui::SameLine(); #endif - TextFocused( "Zone time range:", TimeToString( m_findZone.rangeMin ) ); + TextFocused( "Zone time range:", TimeToStringExact( m_findZone.rangeMin ) ); ImGui::SameLine(); - TextFocused( "-", TimeToString( m_findZone.rangeMax ) ); + TextFocused( "-", TimeToStringExact( m_findZone.rangeMax ) ); ImGui::SameLine(); ImGui::TextDisabled( "(%s)", TimeToString( m_findZone.rangeMax - m_findZone.rangeMin ) ); ImGui::SameLine();