From b5626c0b613de64f0aa00aba02c4a59e1964f92d Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Mon, 30 Apr 2012 22:43:26 -0400 Subject: [PATCH] Update icon when deleting/removing updater --- src/libtomahawk/Playlist.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libtomahawk/Playlist.cpp b/src/libtomahawk/Playlist.cpp index b063ee2c0..bbda7ed5f 100644 --- a/src/libtomahawk/Playlist.cpp +++ b/src/libtomahawk/Playlist.cpp @@ -301,6 +301,8 @@ Playlist::removeUpdater( PlaylistUpdaterInterface* updater ) disconnect( updater, SIGNAL( changed() ), this, SIGNAL( changed() ) ); disconnect( updater, SIGNAL( destroyed( QObject* ) ), this, SIGNAL( changed() ) ); + + emit changed(); }