1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 20:41:58 +02:00

Re-disable phonon seek checking, for now

This commit is contained in:
Jeff Mitchell 2011-08-28 16:23:25 -04:00
parent 57e72e53f9
commit 271e6c480d

View File

@ -245,8 +245,10 @@ bool
AudioEngine::canSeek()
{
bool phononCanSeek = true;
/* TODO: When phonon properly reports this, re-enable it
if ( m_mediaObject && m_mediaObject->isValid() )
phononCanSeek = m_mediaObject->isSeekable();
*/
return !m_playlist.isNull() && ( m_playlist.data()->seekRestrictions() != PlaylistInterface::NoSeek ) && phononCanSeek;
}