mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#12037 Quick Access: Fix display of integer category values for filter
This commit is contained in:
parent
479470b133
commit
0f65762d57
@ -256,8 +256,15 @@ std::map<QString, std::vector<caf::PdmFieldHandle*>> RimEclipsePropertyFilter::q
|
||||
|
||||
auto name = "Property Filter : " + m_resultDefinition->resultVariableUiName();
|
||||
|
||||
fields[name].push_back( &m_lowerBound );
|
||||
fields[name].push_back( &m_upperBound );
|
||||
if ( m_resultDefinition->hasCategoryResult() && m_useCategorySelection() )
|
||||
{
|
||||
fields[name].push_back( &m_selectedCategoryValues );
|
||||
}
|
||||
else
|
||||
{
|
||||
fields[name].push_back( &m_lowerBound );
|
||||
fields[name].push_back( &m_upperBound );
|
||||
}
|
||||
|
||||
return fields;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user