diff --git a/plugins/systemvolume/systemvolumeplugin-macos.cpp b/plugins/systemvolume/systemvolumeplugin-macos.cpp index 461d550f9..a2359f892 100644 --- a/plugins/systemvolume/systemvolumeplugin-macos.cpp +++ b/plugins/systemvolume/systemvolumeplugin-macos.cpp @@ -250,6 +250,9 @@ bool SystemvolumePlugin::receivePacket(const NetworkPacket& np) if (np.has(QStringLiteral("muted"))) { m_sinksMap[name]->setMuted(np.get(QStringLiteral("muted"))); } + if (np.has(QStringLiteral("enabled"))) { + m_sinksMap[name]->setDefault(np.get(QStringLiteral("enabled"))); + } } }