Unverified Commit dfabac0b authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #6908 from DonLakeFlyer/StructureScanFix

Structure Scan: Structure Height was not being loaded back from plan files
parents 9b0d6301 01a2d10d
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
"name": "StructureHeight", "name": "StructureHeight",
"shortDescription": "Height of structure being scanned.", "shortDescription": "Height of structure being scanned.",
"type": "double", "type": "double",
"decimalPlaces": 2,
"units": "m", "units": "m",
"min": 1, "min": 1,
"defaultValue": 100 "defaultValue": 100
......
...@@ -210,6 +210,8 @@ bool StructureScanComplexItem::load(const QJsonObject& complexObject, int sequen ...@@ -210,6 +210,8 @@ bool StructureScanComplexItem::load(const QJsonObject& complexObject, int sequen
_altitudeFact.setRawValue (complexObject[altitudeName].toDouble()); _altitudeFact.setRawValue (complexObject[altitudeName].toDouble());
_layersFact.setRawValue (complexObject[layersName].toDouble()); _layersFact.setRawValue (complexObject[layersName].toDouble());
_structureHeightFact.setRawValue(complexObject[structureHeightName].toDouble());
_altitudeRelative = complexObject[_jsonAltitudeRelativeKey].toBool(true); _altitudeRelative = complexObject[_jsonAltitudeRelativeKey].toBool(true);
if (!_structurePolygon.loadFromJson(complexObject, true /* required */, errorString)) { if (!_structurePolygon.loadFromJson(complexObject, true /* required */, errorString)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment