Release adjustments

* Add CON*RAT track for tubing branch
* Set long summary vector name as default, and allow both in curve name
* Use line shift if multiple quantities are present on axis title
Insert line shift if multiple quantities are present, otherwise insert space between individual vector names and the unit text.
* Move Groups between Field and Wells
* Bump version
This commit is contained in:
Magne Sjaastad
2023-03-13 19:01:31 +01:00
parent beb06932f5
commit 9e751a1bbe
6 changed files with 25 additions and 14 deletions

View File

@@ -301,9 +301,14 @@ QString RimSummaryPlotAxisFormatter::autoAxisTitle() const
for ( const auto& unitIt : unitToQuantityNameMap )
{
// Insert line shift if multiple quantities are present, otherwise insert space
bool insertLineShift = unitIt.second.size() > 1;
for ( const auto& quantIt : unitIt.second )
{
assembledYAxisText += QString::fromStdString( quantIt ) + " ";
assembledYAxisText += QString::fromStdString( quantIt );
insertLineShift ? ( assembledYAxisText += "\n" ) : ( assembledYAxisText += " " );
}
if ( m_axisProperties->showUnitText() )