1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-24 11:53:09 +01:00

Actually, don't rely on Phonon's isSeekable. It sometimes lies.

This commit is contained in:
Alejandro Wainzinger 2011-08-17 06:14:56 -07:00
parent a88afe34c2
commit ab462cd7b8

View File

@ -238,7 +238,7 @@ AudioEngine::canGoPrevious()
bool
AudioEngine::canSeek()
{
return !m_playlist.isNull() && (m_playlist.data()->seekRestrictions() != PlaylistInterface::NoSeek) && m_mediaObject->isSeekable();
return !m_playlist.isNull() && ( m_playlist.data()->seekRestrictions() != PlaylistInterface::NoSeek );
}
void