mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 05:05:22 +01:00
removed logic to try and fix the fast scroll
It just can't be fixed...
This commit is contained in:
parent
f5b5be9e0b
commit
f28419ce3f
@ -70,22 +70,6 @@ class MaterialFastScroll @JvmOverloads constructor(context: Context, attrs: Attr
|
|||||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
||||||
startY = 0f
|
startY = 0f
|
||||||
canScroll = false
|
canScroll = false
|
||||||
val newEvent = MotionEvent.obtain(event)
|
|
||||||
recyclerView.post {
|
|
||||||
// Mimic touch event for recycler so it doesn't scroll back
|
|
||||||
val lastTag = recyclerView.tag
|
|
||||||
recyclerView.tag = noUpdate
|
|
||||||
newEvent.action = MotionEvent.ACTION_MOVE
|
|
||||||
recyclerView.dispatchTouchEvent(newEvent)
|
|
||||||
val newEvent2 = MotionEvent.obtain(newEvent)
|
|
||||||
newEvent2.action = MotionEvent.ACTION_CANCEL
|
|
||||||
recyclerView.dispatchTouchEvent(newEvent2)
|
|
||||||
newEvent2.recycle()
|
|
||||||
newEvent.recycle()
|
|
||||||
recyclerView.post {
|
|
||||||
recyclerView.tag = lastTag
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return super.onTouchEvent(event)
|
return super.onTouchEvent(event)
|
||||||
|
Loading…
Reference in New Issue
Block a user