From 8182421fb54d1a1ca5e98f393bb4dbe3fd7ce46a Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Thu, 21 Feb 2019 08:08:27 +0100 Subject: [PATCH] Fix category indentation in GeoMech results --- ApplicationCode/ProjectDataModel/RimGeoMechResultDefinition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/ProjectDataModel/RimGeoMechResultDefinition.cpp b/ApplicationCode/ProjectDataModel/RimGeoMechResultDefinition.cpp index 2c315980ce..e0219f6967 100644 --- a/ApplicationCode/ProjectDataModel/RimGeoMechResultDefinition.cpp +++ b/ApplicationCode/ProjectDataModel/RimGeoMechResultDefinition.cpp @@ -410,7 +410,7 @@ void RimGeoMechResultDefinition::getUiAndResultVariableStringList(QStringList* u for (compIt = fieldIt->second.begin(); compIt != fieldIt->second.end(); ++compIt) { QString resultCompName = QString::fromStdString(*compIt); - uiNames->push_back(resultCompName); + uiNames->push_back(" " + resultCompName); variableNames->push_back(composeFieldCompString(resultFieldName, resultCompName)); } }