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:
parent
fa38ed5e91
commit
af8811af30
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user