mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix assignment instead of comparison bug in RimPlotDataFilterItem::fieldChangedByUi
This commit is contained in:
parent
4dfa975836
commit
e66f937c29
@ -243,7 +243,7 @@ void RimPlotDataFilterItem::fieldChangedByUi( const caf::PdmFieldHandle* changed
|
||||
this->updateMaxMinAndDefaultValues( false );
|
||||
parentPlot->onFiltersChanged();
|
||||
}
|
||||
else if ( changedField = &m_filterOperation )
|
||||
else if ( changedField == &m_filterOperation )
|
||||
{
|
||||
this->updateMaxMinAndDefaultValues( false );
|
||||
parentPlot->onFiltersChanged();
|
||||
|
Loading…
Reference in New Issue
Block a user