1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-21 16:31:58 +02:00

Fix volume on external (un)muting

This commit is contained in:
Dominik Schmidt 2016-02-22 02:43:12 +01:00
parent fa38ed5e91
commit af8811af30

View File

@ -583,7 +583,8 @@ AudioOutput::onVlcEvent( const libvlc_event_t* event )
setState( Error );
break;
case libvlc_MediaPlayerAudioVolume:
emit volumeChanged( event->u.media_player_audio_volume.volume );
m_volume = event->u.media_player_audio_volume.volume;
emit volumeChanged( volume() );
break;
case libvlc_MediaPlayerMuted:
m_muted = true;