QtLauncher: fix adding aircraft paths
Avoids Nasal security errors when using "Additional aircraft locations"
This commit is contained in:
parent
e10b493421
commit
ca362e9251
1 changed files with 2 additions and 1 deletions
|
@ -769,7 +769,8 @@ void QtLauncher::onRun()
|
||||||
// aircraft paths
|
// aircraft paths
|
||||||
for (int i=0; i<m_ui->aircraftPathsList->count(); ++i) {
|
for (int i=0; i<m_ui->aircraftPathsList->count(); ++i) {
|
||||||
QString path = m_ui->aircraftPathsList->item(i)->text();
|
QString path = m_ui->aircraftPathsList->item(i)->text();
|
||||||
opt->addOption("fg-aircraft", path.toStdString());
|
// can't use fg-aircraft for this, as it is processed before the launcher is run
|
||||||
|
globals->append_aircraft_path(path.toStdString());
|
||||||
}
|
}
|
||||||
|
|
||||||
// additional arguments
|
// additional arguments
|
||||||
|
|
Loading…
Add table
Reference in a new issue