From 0172515a86fce82a0944f2a07cda68548eada6dc Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 26 May 2011 09:37:46 -0400 Subject: [PATCH] Fix dropping ou the sourcetree, qtreeview is really crappy in this case --- src/sourcetree/sourcesmodel.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/sourcetree/sourcesmodel.cpp b/src/sourcetree/sourcesmodel.cpp index 6f5b6246b..5c3650894 100644 --- a/src/sourcetree/sourcesmodel.cpp +++ b/src/sourcetree/sourcesmodel.cpp @@ -194,13 +194,17 @@ bool SourcesModel::dropMimeData( const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent ) { SourceTreeItem* item; + qDebug() << "Got mime data dropped:" << row << column << parent << itemFromIndex( parent )->text(); if( row == -1 && column == -1 ) item = itemFromIndex( parent ); - else + else if( column == 0 ) item = itemFromIndex( index( row, column, parent ) ); + else // column is -1, that means the drop is happening "below" the indices. that means we actually want the one before it + item = itemFromIndex( index( row - 1, 0, parent ) ); Q_ASSERT( item ); + qDebug() << "Dropping on:" << item->text(); return item->dropMimeData( data, action ); }