Add support for all summary data types in data sources tree (#8873)

* Add support for all summary data types in data sources tree
* Use item icons for folders.
This commit is contained in:
jonjenssen
2022-05-03 16:29:55 +02:00
committed by GitHub
parent 3de8010c2b
commit d3ce7a2096
3 changed files with 227 additions and 26 deletions

View File

@@ -565,6 +565,11 @@ std::string RifEclipseSummaryAddress::itemUiText() const
text += std::to_string( this->id() );
}
break;
case SUMMARY_IMPORTED:
{
text += this->quantityName();
}
break;
}
return text;