1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 01:39:42 +01:00

* Only reset volume when resuming playback.

This commit is contained in:
Christian Muehlhaeuser 2012-05-24 15:26:02 +02:00
parent ca41b8b7d3
commit 305b69b229

View File

@ -855,9 +855,10 @@ AudioEngine::checkStateQueue()
{
case Playing:
{
setVolume( m_volume );
bool paused = isPaused();
m_mediaObject->play();
setVolume( m_volume );
if ( paused )
setVolume( m_volume );
}
case Paused: