From e9be4934c41d66ee3517a075565cbce47f2ca407 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 2 Feb 2020 14:52:36 +0100 Subject: [PATCH] Display plot item time. --- server/TracyView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 38286570..9561bb14 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -5347,6 +5347,7 @@ void View::DrawPlotPoint( const ImVec2& wpos, float x, float y, int offset, uint if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( x - 2, offset ), wpos + ImVec2( x + 2, offset + PlotHeight ) ) ) { ImGui::BeginTooltip(); + TextFocused( "Time:", TimeToString( item->time.Val() ) ); if( type == PlotType::Memory ) { TextDisabledUnformatted( "Value:" );