Put total time and max counts on the same line.

This commit is contained in:
Bartosz Taudul 2018-03-04 23:25:33 +01:00
parent 3a8c976285
commit 68f652c40f

View File

@ -2809,6 +2809,9 @@ void View::DrawFindZone()
}
ImGui::Text( "Total time: %s", TimeToString( timeTotal ) );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::Text( "Max counts: %s", RealToString( maxVal, true ) );
enum { Height = 200 };