From 29d649216e7e025e2b9de318659a5e50d6c35f2e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 3 Sep 2018 20:39:34 +0200 Subject: [PATCH] In compare traces put both total times in the same line. --- server/TracyView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 62e87666..30d4d88e 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -5844,6 +5844,9 @@ void View::DrawCompare() ImGui::SameLine(); #endif TextFocused( "Total time (this):", TimeToString( zoneData0.total * adj0 ) ); + ImGui::SameLine(); + ImGui::Spacing(); + ImGui::SameLine(); #ifdef TRACY_EXTENDED_FONT ImGui::TextColored( ImVec4( 0xDD/511.f, 0x22/511.f, 0x22/511.f, 1.f ), ICON_FA_GEM ); ImGui::SameLine();