mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05: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.GestureDetector
|
||||||
import android.view.MotionEvent
|
import android.view.MotionEvent
|
||||||
import android.view.ViewConfiguration
|
import android.view.ViewConfiguration
|
||||||
import androidx.core.os.postDelayed
|
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,7 +43,7 @@ open class GestureDetectorWithLongTap(
|
||||||
if (ev.downTime - lastUp > doubleTapTime) {
|
if (ev.downTime - lastUp > doubleTapTime) {
|
||||||
downX = ev.rawX
|
downX = ev.rawX
|
||||||
downY = ev.rawY
|
downY = ev.rawY
|
||||||
handler.postDelayed(longTapTime) { longTapFn }
|
handler.postDelayed(longTapFn, longTapTime)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MotionEvent.ACTION_MOVE -> {
|
MotionEvent.ACTION_MOVE -> {
|
||||||
|
|
Loading…
Reference in a new issue