More concise time range display.

This commit is contained in:
Bartosz Taudul 2018-02-22 12:38:43 +01:00
parent fbaf59c9a6
commit ffb28a3d0d

View File

@ -4196,8 +4196,7 @@ void View::DrawFindZone()
ImGui::SameLine();
ImGui::Checkbox( "Log time", &m_findZone.logTime );
ImGui::Text( "tMin: %s", TimeToString( tmin ) );
ImGui::Text( "tMax: %s", TimeToString( tmax ) );
ImGui::Text( "Time range: %s - %s", TimeToString( tmin ), TimeToString( tmax ) );
const auto dt = double( tmax - tmin );