diff --git a/src/mumble/Overlay.cpp b/src/mumble/Overlay.cpp index a764c7ad8..11023d9b9 100644 --- a/src/mumble/Overlay.cpp +++ b/src/mumble/Overlay.cpp @@ -191,6 +191,9 @@ Overlay::Overlay() : QObject() { forceSettings(); qlsServer = new QLocalServer(this); + // Allow anyone to access the pipe in order to communicate with the overlay + qlsServer->setSocketOptions(QLocalServer::WorldAccessOption); + QString pipepath; #ifdef Q_OS_WIN pipepath = QLatin1String("MumbleOverlayPipe");