Exclude some more cmd line args. from being passed from launcher

This commit is contained in:
Klaus Basan
2018-06-03 00:27:32 +02:00
parent c6f3d4e2f2
commit 6f8d980d2c

View File

@@ -297,7 +297,7 @@ namespace BlackCore
static const QString launcher = CApplication::getExecutableForApplication(CApplicationInfo::Application::Laucher);
if (launcher.isEmpty() || CApplication::isApplicationRunning(CApplicationInfo::Laucher)) { return false; }
const QStringList args = this->argumentsJoined({}, { "--dbus" });
const QStringList args = this->argumentsJoined({}, { "--dbus", "--core", "--coreaudio" });
return QProcess::startDetached(launcher, args);
}