diff --git a/ApplicationLibCode/ProjectDataModel/RiaOpmParserTools.cpp b/ApplicationLibCode/ProjectDataModel/RiaOpmParserTools.cpp index 59ac89bd84..c039cd01c5 100644 --- a/ApplicationLibCode/ProjectDataModel/RiaOpmParserTools.cpp +++ b/ApplicationLibCode/ProjectDataModel/RiaOpmParserTools.cpp @@ -264,8 +264,13 @@ std::vector RiaOpmParserTools::extractWse auto typeTag = deckItem.getType(); if ( typeTag == Opm::type_tag::fdouble ) { - double doubleValue = deckItem.get( 0 ); - aicdTemplate[deckItem.name()] = doubleValue; + // Only read out explicitly set values. If the value is defaulted, do not read out the value to make sure the string + // "1*" is displayed in the GUI + if ( !deckItem.defaultApplied( 0 ) ) + { + double doubleValue = deckItem.get( 0 ); + aicdTemplate[deckItem.name()] = doubleValue; + } } }