From 5796f19a3bb6f43701c2f862318afd6de7b7d3a2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 16 Sep 2019 20:27:16 +0200 Subject: [PATCH] Focus out exact memory plot value. --- server/TracyView.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 9736ea42..04976376 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4871,7 +4871,9 @@ void View::DrawPlotPoint( const ImVec2& wpos, float x, float y, int offset, uint } else { - ImGui::Text( "%s (%s)", MemSizeToString( item->val ), RealToString( item->val, true ) ); + ImGui::TextUnformatted( MemSizeToString( item->val ) ); + ImGui::SameLine(); + ImGui::TextDisabled( "(%s)", RealToString( item->val, true ) ); } } else