From fe7d1280565702c3caae888e29e891c9aa38bd07 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 7 Sep 2011 05:33:13 +0200 Subject: [PATCH] * Fixed TWK-499: Update playlist either wether it's been a move or a copy. --- src/libtomahawk/playlist/playlistmodel.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libtomahawk/playlist/playlistmodel.cpp b/src/libtomahawk/playlist/playlistmodel.cpp index 0d5ebff9f..7679df66b 100644 --- a/src/libtomahawk/playlist/playlistmodel.cpp +++ b/src/libtomahawk/playlist/playlistmodel.cpp @@ -421,13 +421,7 @@ PlaylistModel::parsedDroppedTracks( QList< query_ptr > tracks ) } emit endInsertRows(); - // Work around Qt-on-mac bug where drags from outside the app are Qt::MoveAction - // instead of Qt::CopyAction -#ifdef Q_WS_MAC if ( m_dropStorage.action & Qt::CopyAction || m_dropStorage.action & Qt::MoveAction ) -#else - if ( m_dropStorage.action & Qt::CopyAction ) -#endif { onPlaylistChanged( true ); emit trackCountChanged( rowCount( QModelIndex() ) );