Display bin counts with separators.

This commit is contained in:
Bartosz Taudul 2019-03-26 20:18:20 +01:00
parent df3e8597c4
commit 021368fb59

View File

@ -6567,9 +6567,7 @@ void View::DrawFindZone()
TextDisabledUnformatted( "Time range:" );
ImGui::SameLine();
ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) );
TextDisabledUnformatted( "Count:" );
ImGui::SameLine();
ImGui::Text( "%" PRIu64, bins[bin] );
TextFocused( "Count:", RealToString( bins[bin], true ) );
TextFocused( "Time spent in bin:", TimeToString( binTime[bin] ) );
TextFocused( "Time spent in the left bins:", TimeToString( tBefore ) );
TextFocused( "Time spent in the right bins:", TimeToString( tAfter ) );