mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 22:37:56 +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:
		| @@ -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() | ||||
|             } | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user