Fix time range reset condition.

This commit is contained in:
Bartosz Taudul 2019-08-14 21:53:09 +02:00
parent 29819321b9
commit 7549c50bab
2 changed files with 2 additions and 2 deletions

View File

@ -6554,8 +6554,6 @@ void View::DrawFindZone()
size_t i;
if( m_findZone.runningTime )
{
tmin = std::numeric_limits<int64_t>::max();
tmax = std::numeric_limits<int64_t>::min();
for( i=m_findZone.sortedNum; i<zsz; i++ )
{
auto& zone = *zones[i].zone;

View File

@ -418,6 +418,8 @@ private:
average = 0;
median = 0;
total = 0;
tmin = std::numeric_limits<int64_t>::max();
tmax = std::numeric_limits<int64_t>::min();
}
void ResetGroups()