Aircraft ICAO code of own model is wrong

Although the reverse lookup of a model is correct, it's aircraft ICAO code is wrong

Issues found

* in the driver the ICAO code is permanently overridden -> commented out
* there are two contexts, own aircraft and simulator, but only one uses reverse lookup -> now both
* using Qt::QueuedConnection for context -> GUI
This commit is contained in:
Klaus Basan
2018-12-11 00:51:31 +01:00
parent 7cf4a3ec33
commit c591728e88
5 changed files with 33 additions and 8 deletions

View File

@@ -226,7 +226,6 @@ namespace BlackCore
}
emit this->movedAircraft();
}
}
} // only if simulating
}
@@ -249,7 +248,7 @@ namespace BlackCore
}
// changed model
emit this->changedModel(model);
emit this->changedModel(updateModel);
return true;
}