From 9f4c8d3b74c160bdcacddc218fb4d7ac7c78da00 Mon Sep 17 00:00:00 2001 From: Jessica Hamilton Date: Mon, 16 Jan 2017 18:54:02 +0000 Subject: [PATCH] desklink: set the status of fMuted in _ConnectMixer(). * This fixes the volume icon not showing as muted, despite media preflet saying otherwise. --- src/bin/desklink/MediaReplicant.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/desklink/MediaReplicant.cpp b/src/bin/desklink/MediaReplicant.cpp index 64f3bf4264..6f06b93f90 100644 --- a/src/bin/desklink/MediaReplicant.cpp +++ b/src/bin/desklink/MediaReplicant.cpp @@ -586,6 +586,7 @@ MediaReplicant::_ConnectMixer() if (fMixerControl->MuteNode() != media_node::null) { roster->StartWatching(this, fMixerControl->MuteNode(), B_MEDIA_NEW_PARAMETER_VALUE); + fMuted = fMixerControl->Mute(); } return B_OK;