mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 22:26:32 +02:00
* Fixed dragging unresolved queries from PlayableModel.
This commit is contained in:
@@ -532,7 +532,7 @@ PlayableModel::mimeData( const QModelIndexList &indexes ) const
|
||||
const result_ptr& result = item->result();
|
||||
resultStream << QString( "application/tomahawk.result.list" ) << qlonglong( &result );
|
||||
}
|
||||
else if ( !item->result().isNull() )
|
||||
else if ( !item->query().isNull() )
|
||||
{
|
||||
const query_ptr& query = item->query();
|
||||
resultStream << QString( "application/tomahawk.query.list" ) << qlonglong( &query );
|
||||
|
Reference in New Issue
Block a user