From d0fdff760e73c86fc6823e0af3baf4e5889bc3fa Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 26 Jun 2012 05:01:39 +0200 Subject: [PATCH] * Remove spinner when AudioEngine stopped. --- src/libtomahawk/playlist/GridItemDelegate.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/libtomahawk/playlist/GridItemDelegate.cpp b/src/libtomahawk/playlist/GridItemDelegate.cpp index 1b34116da..f64aee9f1 100644 --- a/src/libtomahawk/playlist/GridItemDelegate.cpp +++ b/src/libtomahawk/playlist/GridItemDelegate.cpp @@ -245,6 +245,9 @@ GridItemDelegate::onPlayClicked( const QPersistentModelIndex& index ) closure = NewClosure( AudioEngine::instance(), SIGNAL( started( Tomahawk::result_ptr ) ), const_cast(this), SLOT( onPlaylistChanged( QPersistentModelIndex ) ), QPersistentModelIndex( index ) ); + closure = NewClosure( AudioEngine::instance(), SIGNAL( stopped() ), + const_cast(this), SLOT( onPlaylistChanged( QPersistentModelIndex ) ), QPersistentModelIndex( index ) ); + closure->setAutoDelete( false ); connect( AudioEngine::instance(), SIGNAL( stopped() ), SLOT( onPlaybackFinished() ) ); @@ -482,6 +485,11 @@ GridItemDelegate::onPlaylistChanged( const QPersistentModelIndex& index ) m_pauseButton[ index ]->deleteLater(); m_pauseButton.remove( index ); } + if ( m_spinner.contains( index ) ) + { + m_spinner[ index ]->deleteLater(); + m_spinner.remove( index ); + } } } }