Remove uneeded checks for should move, fixes moving a manga to the first positon
This commit is contained in:
parent
5714f183a8
commit
340e534ca9
@ -381,8 +381,7 @@ class LibraryCategoryView @JvmOverloads constructor(context: Context, attrs: Att
|
|||||||
|
|
||||||
override fun shouldMoveItem(fromPosition: Int, toPosition: Int): Boolean {
|
override fun shouldMoveItem(fromPosition: Int, toPosition: Int): Boolean {
|
||||||
if (adapter.isSelected(fromPosition)) toggleSelection(fromPosition)
|
if (adapter.isSelected(fromPosition)) toggleSelection(fromPosition)
|
||||||
if (toPosition < 1) return false
|
return true
|
||||||
return adapter.getItem(fromPosition) is LibraryItem
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onActionStateChanged(viewHolder: RecyclerView.ViewHolder?, actionState: Int) {
|
override fun onActionStateChanged(viewHolder: RecyclerView.ViewHolder?, actionState: Int) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user