mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
disable modifying the already played queue items
This commit is contained in:
parent
32822163e1
commit
2760257c26
@ -73,6 +73,9 @@ 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)
|
||||
return true
|
||||
|
Loading…
Reference in New Issue
Block a user