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() ) );