use ctrl+arrow rather than alt+arrow

This commit is contained in:
Kovid Goyal 2021-04-07 21:20:06 +05:30
parent 03ef47c8a5
commit d2a2faae0d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -707,7 +707,7 @@ def check_for_books_loaded():
def onkeydown(container_id, close_action, ev):
if render_book.book_id:
if ev.altKey:
if ev.ctrlKey:
if ev.key is 'ArrowLeft':
next_book(render_book.book_id, -1)
ev.preventDefault(), ev.stopPropagation()