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

* Missing breaks.

This commit is contained in:
Christian Muehlhaeuser 2012-06-12 19:46:24 +02:00
parent 833a9f59d3
commit bcd7d82654

View File

@ -860,12 +860,15 @@ AudioEngine::checkStateQueue()
m_mediaObject->play();
if ( paused )
setVolume( m_volume );
break;
}
case Paused:
{
m_volume = volume();
m_mediaObject->pause();
break;
}
}
}