mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
use ctrl+arrow rather than alt+arrow
This commit is contained in:
parent
03ef47c8a5
commit
d2a2faae0d
@ -707,7 +707,7 @@ def check_for_books_loaded():
|
|||||||
|
|
||||||
def onkeydown(container_id, close_action, ev):
|
def onkeydown(container_id, close_action, ev):
|
||||||
if render_book.book_id:
|
if render_book.book_id:
|
||||||
if ev.altKey:
|
if ev.ctrlKey:
|
||||||
if ev.key is 'ArrowLeft':
|
if ev.key is 'ArrowLeft':
|
||||||
next_book(render_book.book_id, -1)
|
next_book(render_book.book_id, -1)
|
||||||
ev.preventDefault(), ev.stopPropagation()
|
ev.preventDefault(), ev.stopPropagation()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user