From 68f652c40f54c488258a7cfdd1cdf00d40a8c1fc Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 4 Mar 2018 23:25:33 +0100 Subject: [PATCH] Put total time and max counts on the same line. --- server/TracyView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 6feb05fe..a80d66a6 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2809,6 +2809,9 @@ void View::DrawFindZone() } ImGui::Text( "Total time: %s", TimeToString( timeTotal ) ); + ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); ImGui::Text( "Max counts: %s", RealToString( maxVal, true ) ); enum { Height = 200 };