mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Add page down/page up hardware detection (#1212)
* Added page down and page up key event. Have it always on since page down and page up buttons are only on readers or keyboards * moved code to different method * added spaces back to comments
This commit is contained in:
		@@ -218,6 +218,8 @@ class ReaderActivity : BaseRxActivity<ReaderPresenter>() {
 | 
			
		||||
                KeyEvent.KEYCODE_DPAD_LEFT -> viewer?.moveLeft()
 | 
			
		||||
                KeyEvent.KEYCODE_DPAD_DOWN -> viewer?.moveDown()
 | 
			
		||||
                KeyEvent.KEYCODE_DPAD_UP -> viewer?.moveUp()
 | 
			
		||||
                KeyEvent.KEYCODE_PAGE_DOWN -> viewer?.moveDown()
 | 
			
		||||
                KeyEvent.KEYCODE_PAGE_UP -> viewer?.moveUp()
 | 
			
		||||
                KeyEvent.KEYCODE_MENU -> toggleMenu()
 | 
			
		||||
                else -> return super.onKeyUp(keyCode, event)
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user