1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 02:09:48 +01:00

* Store volume when actually pausing.

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

View File

@ -152,8 +152,6 @@ AudioEngine::pause()
{
tDebug( LOGEXTRA ) << Q_FUNC_INFO;
m_volume = volume();
queueState( Paused );
emit paused();
@ -863,6 +861,7 @@ AudioEngine::checkStateQueue()
case Paused:
{
m_volume = volume();
m_mediaObject->pause();
}
}