Fix keyboard navigation direction

This commit is contained in:
Koitharu
2025-05-11 17:35:45 +03:00
parent 7148ebcf34
commit 8ad28fd509

View File

@@ -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()