diff --git a/src/GUI/QtLauncher.cxx b/src/GUI/QtLauncher.cxx index 49ead834a..0d9eb2374 100644 --- a/src/GUI/QtLauncher.cxx +++ b/src/GUI/QtLauncher.cxx @@ -24,6 +24,7 @@ #include #include #include +#include // Simgear #include @@ -1080,6 +1081,20 @@ void QtLauncher::setAirport(FGAirportRef ref) void QtLauncher::onOpenCustomAircraftDir() { + QFileInfo info(m_customAircraftDir); + if (!info.exists()) { + int result = QMessageBox::question(this, "Create folder?", + "The custom aircraft folder does not exist, create it now?", + QMessageBox::Yes | QMessageBox::No, + QMessageBox::Yes); + if (result == QMessageBox::No) { + return; + } + + QDir d(m_customAircraftDir); + d.mkpath(m_customAircraftDir); + } + QUrl u = QUrl::fromLocalFile(m_customAircraftDir); QDesktopServices::openUrl(u); }