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
8b5448b5f0
commit
0800580323
@ -287,8 +287,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