Summary Plot Curve Editor : Use () instead of [] around acronyms as [] are used for unit text

This commit is contained in:
Magne Sjaastad
2017-12-12 08:42:09 +01:00
parent ab53135f91
commit b7bdce1d9e
2 changed files with 13 additions and 8 deletions

View File

@@ -242,10 +242,15 @@ QString RimSummaryPlotYAxisFormatter::autoAxisTitle() const
{
if (!quantityNameForDisplay.empty())
{
quantityNameForDisplay += " ";
quantityNameForDisplay += " (";
quantityNameForDisplay += quantityName;
quantityNameForDisplay += ")";
}
else
{
quantityNameForDisplay += quantityName;
}
quantityNameForDisplay += quantityName;
}
}