From 57dfd6b4b29020275465a203f45a21ad6728fb09 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Fri, 5 Aug 2011 11:14:08 -0400 Subject: [PATCH] Set drop rect from left edge to right edge always, don't rely on QAIV for native drag-drops --- src/libtomahawk/playlist/trackview.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); }