Unverified Commit 08fe9ca3 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8544 from alexeylysenko/fix_typo_in_terrain_air_map_query

Fixed typo in TerrainAirMapQuery::_parseCarpetData
parents e8c7d4b8 854ebd85
......@@ -249,7 +249,7 @@ void TerrainAirMapQuery::_parseCarpetData(const QJsonValue& carpetJson)
QJsonObject statsObject = jsonObject["stats"].toObject();
double minHeight = statsObject["min"].toDouble();
double maxHeight = statsObject["min"].toDouble();
double maxHeight = statsObject["max"].toDouble();
QList<QList<double>> carpet;
if (!_carpetStatsOnly) {
......
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