Fix keyboard navigation direction

master
Koitharu 12 months ago
parent 7148ebcf34
commit 8ad28fd509
Signed by: Koitharu
GPG Key ID: 676DEE768C17A9D7

@ -71,9 +71,9 @@ class ReaderControlDelegate(
return false
}
KeyEvent.KEYCODE_DPAD_RIGHT -> switchByRelative(-1, event)
KeyEvent.KEYCODE_DPAD_RIGHT -> switchByRelative(1, event)
KeyEvent.KEYCODE_DPAD_LEFT -> switchByRelative(1, event)
KeyEvent.KEYCODE_DPAD_LEFT -> switchByRelative(-1, event)
KeyEvent.KEYCODE_DPAD_CENTER -> listener.toggleUiVisibility()

Loading…
Cancel
Save