Merge pull request #2625 from Bnyro/master

Allow modifying the queue without restrictions
This commit is contained in:
Bnyro 2023-01-07 19:16:09 +01:00 committed by GitHub
commit 0ab04c4a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,11 +89,8 @@ class PlayingQueueSheet : ExpandedBottomSheet() {
val from = viewHolder.absoluteAdapterPosition
val to = target.absoluteAdapterPosition
val currentPosition = PlayingQueue.currentIndex()
if (to <= currentPosition) return false
adapter.notifyItemMoved(from, to)
PlayingQueue.move(from, to)
adapter.notifyItemMoved(from, to)
return true
}