1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 16:42:26 +02:00

* PlayableItem::forceUpdate() forces a repaint by emitting dataChanged().

This commit is contained in:
Christian Muehlhaeuser 2013-06-12 06:05:09 +02:00
parent ccf8141353
commit 2bd3061516

View File

@ -52,6 +52,7 @@ public:
void setPlaybackLog( const Tomahawk::PlaybackLog& log );
PlayableItem* parent() const { return m_parent; }
void forceUpdate() { emit dataChanged(); }
bool isPlaying() const { return m_isPlaying; }
void setIsPlaying( bool b ) { m_isPlaying = b; emit dataChanged(); }