From ffb28a3d0d89c79d4e17ae7c0b7510be7a7a3143 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 22 Feb 2018 12:38:43 +0100 Subject: [PATCH] More concise time range display. --- server/TracyView.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 453f1080..a0222301 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4196,8 +4196,7 @@ void View::DrawFindZone() ImGui::SameLine(); ImGui::Checkbox( "Log time", &m_findZone.logTime ); - ImGui::Text( "tMin: %s", TimeToString( tmin ) ); - ImGui::Text( "tMax: %s", TimeToString( tmax ) ); + ImGui::Text( "Time range: %s - %s", TimeToString( tmin ), TimeToString( tmax ) ); const auto dt = double( tmax - tmin );