Disable drag of track items until this is properly implemented
Stop bad things from happening until proper DnD support of track items has been implemented
This commit is contained in:
parent
ae71d24f6e
commit
fefea9de61
|
@ -255,6 +255,7 @@ void PlaylistListContainer::SetApplication(Application* app) {
|
|||
parent_folder->appendRow(playlist_item);
|
||||
for (const Song s : app->playlist_backend()->GetPlaylistSongs(p.id)) {
|
||||
QStandardItem* track_item = model_->NewTrack(s);
|
||||
track_item->setDragEnabled(false);
|
||||
playlist_item->appendRow(track_item);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue