diff --git a/src/libtomahawk/playlist/trackview.cpp b/src/libtomahawk/playlist/trackview.cpp index 6e379e8bc..5d1f45b58 100644 --- a/src/libtomahawk/playlist/trackview.cpp +++ b/src/libtomahawk/playlist/trackview.cpp @@ -246,11 +246,10 @@ TrackView::dragMoveEvent( QDragMoveEvent* event ) if ( index.isValid() ) { const QRect rect = visualRect( index ); - m_dropRect = rect; // indicate that the item will be inserted above the current place const int gap = 5; // FIXME constant - m_dropRect = QRect( rect.left(), rect.top() - gap / 2, rect.width(), gap ); + m_dropRect = QRect( 0, rect.top() - gap / 2, width(), gap ); event->acceptProposedAction(); }