From 6f8d980d2ce3b288f7d75cb6c3f5cb4cb9eea40d Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Sun, 3 Jun 2018 00:27:32 +0200 Subject: [PATCH] Exclude some more cmd line args. from being passed from launcher --- src/blackcore/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/application.cpp b/src/blackcore/application.cpp index c2e85f6b3..2d7968fa2 100644 --- a/src/blackcore/application.cpp +++ b/src/blackcore/application.cpp @@ -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); }