1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 05:03:53 +00:00

Display time instead of counts in cumulate time mode.

This commit is contained in:
Bartosz Taudul 2018-03-05 20:19:05 +01:00
parent f733758652
commit e9e3e46ea2

View File

@ -2841,7 +2841,7 @@ void View::DrawFindZone()
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::Text( "Max counts: %s", RealToString( maxVal, true ) );
ImGui::Text( "Max counts: %s", m_findZone.cumulateTime ? TimeToString( maxVal ) : RealToString( maxVal, true ) );
enum { Height = 200 };
const auto wpos = ImGui::GetCursorScreenPos();