Bugfix : Lower threshold not applied

Fixes #6783.
This commit is contained in:
Ruben Thoms
2020-10-15 15:27:35 +02:00
committed by Magne Sjaastad
parent 83a9730f5b
commit b406649e17
2 changed files with 13 additions and 7 deletions

View File

@@ -415,6 +415,8 @@ void RimElementVectorResult::mappingRange( double& min, double& max ) const
}
}
}
max = std::max<double>( std::abs( min ), std::abs( max ) );
min = 0.0;
}
//--------------------------------------------------------------------------------------------------