From 5fde56d96adf99c001a33b9344fdf95d464be182 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 22 Jun 2019 13:10:46 +0200 Subject: [PATCH] Remove hidden zone time without profiling tooltip. --- server/TracyView.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 0f61fd14..90559db3 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4236,12 +4236,6 @@ void View::DrawZoneInfoWindow() const auto selftime = GetZoneSelfTime( ev ); TextFocused( "Time from start of program:", TimeToString( ev.start - m_worker.GetTimeBegin() ) ); TextFocused( "Execution time:", TimeToString( ztime ) ); - if( ImGui::IsItemHovered() ) - { - ImGui::BeginTooltip(); - TextFocused( "Without profiling:", TimeToString( ztime - m_worker.GetDelay() * dmul ) ); - ImGui::EndTooltip(); - } TextFocused( "Self time:", TimeToString( selftime ) ); ImGui::SameLine(); ImGui::TextDisabled( "(%.2f%%)", 100.f * selftime / ztime );