mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix analysis plot filter limits to include the interval min/max
This commit is contained in:
parent
3cb40ca50d
commit
71954f7252
@ -1102,7 +1102,7 @@ void RimAnalysisPlot::applyFilter( const RimPlotDataFilterItem* filter,
|
|||||||
|
|
||||||
if ( filter->useAbsoluteValues() ) value = fabs( value );
|
if ( filter->useAbsoluteValues() ) value = fabs( value );
|
||||||
|
|
||||||
if ( minMax.first < value && value < minMax.second )
|
if ( minMax.first <= value && value <= minMax.second )
|
||||||
{
|
{
|
||||||
casesToKeep.insert( sumCase );
|
casesToKeep.insert( sumCase );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user