diff --git a/plugins/systemvolume/systemvolumeplugin-pulse.cpp b/plugins/systemvolume/systemvolumeplugin-pulse.cpp index 7a56ff4e3..16dfb6717 100644 --- a/plugins/systemvolume/systemvolumeplugin-pulse.cpp +++ b/plugins/systemvolume/systemvolumeplugin-pulse.cpp @@ -50,6 +50,9 @@ bool SystemvolumePlugin::receivePacket(const NetworkPacket& np) if (np.has(QStringLiteral("muted"))) { sink->setMuted(np.get(QStringLiteral("muted"))); } + if (np.has(QStringLiteral("enabled"))) { + sink->setDefault(np.get(QStringLiteral("enabled"))); + } } } return true;