mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 19:27:25 +01:00
toggle reader menu if transition by tapping are disabled (#2887)
Co-authored-by: raslmenea.rm@gmail.com <xpuf4MQNzDtnaqR>
This commit is contained in:
parent
bcde4337ac
commit
8de004d281
@ -82,8 +82,8 @@ abstract class PagerViewer(val activity: ReaderActivity) : BaseViewer {
|
||||
pager.tapListener = { event ->
|
||||
val positionX = event.x
|
||||
when {
|
||||
positionX < pager.width * 0.33f -> if (config.tappingEnabled) moveLeft()
|
||||
positionX > pager.width * 0.66f -> if (config.tappingEnabled) moveRight()
|
||||
positionX < pager.width * 0.33f -> if (config.tappingEnabled) moveLeft() else activity.toggleMenu()
|
||||
positionX > pager.width * 0.66f -> if (config.tappingEnabled) moveRight() else activity.toggleMenu()
|
||||
else -> activity.toggleMenu()
|
||||
}
|
||||
}
|
||||
|
@ -95,8 +95,8 @@ class WebtoonViewer(val activity: ReaderActivity, val isContinuous: Boolean = tr
|
||||
recycler.tapListener = { event ->
|
||||
val positionX = event.rawX
|
||||
when {
|
||||
positionX < recycler.width * 0.33 -> if (config.tappingEnabled) scrollUp()
|
||||
positionX > recycler.width * 0.66 -> if (config.tappingEnabled) scrollDown()
|
||||
positionX < recycler.width * 0.33 -> if (config.tappingEnabled) scrollUp() else activity.toggleMenu()
|
||||
positionX > recycler.width * 0.66 -> if (config.tappingEnabled) scrollDown() else activity.toggleMenu()
|
||||
else -> activity.toggleMenu()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user