mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 14:17:48 +01:00
Fix reader action sheet not opening
This commit is contained in:
parent
333c035fed
commit
1b699bb814
1 changed files with 1 additions and 2 deletions
|
@ -6,7 +6,6 @@ import android.os.Looper
|
|||
import android.view.GestureDetector
|
||||
import android.view.MotionEvent
|
||||
import android.view.ViewConfiguration
|
||||
import androidx.core.os.postDelayed
|
||||
import kotlin.math.abs
|
||||
|
||||
/**
|
||||
|
@ -44,7 +43,7 @@ open class GestureDetectorWithLongTap(
|
|||
if (ev.downTime - lastUp > doubleTapTime) {
|
||||
downX = ev.rawX
|
||||
downY = ev.rawY
|
||||
handler.postDelayed(longTapTime) { longTapFn }
|
||||
handler.postDelayed(longTapFn, longTapTime)
|
||||
}
|
||||
}
|
||||
MotionEvent.ACTION_MOVE -> {
|
||||
|
|
Loading…
Reference in a new issue