From 217c16de20d696c6ed863cc5e56d74f1cb465f81 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 20 Feb 2020 23:21:54 +0100 Subject: [PATCH] Display exact start and end time for CPU data. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 42064328..1453c30f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4920,8 +4920,8 @@ int View::DrawCpuData( int offset, double pxns, const ImVec2& wpos, bool hover, ImGui::TextDisabled( "(%s)", RealToString( thread ) ); } ImGui::Separator(); - TextFocused( "Start time:", TimeToString( start ) ); - TextFocused( "End time:", TimeToString( end ) ); + TextFocused( "Start time:", TimeToStringExact( start ) ); + TextFocused( "End time:", TimeToStringExact( end ) ); TextFocused( "Activity time:", TimeToString( end - start ) ); ImGui::EndTooltip(); ImGui::PushFont( m_smallFont );