mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-03 12:25:41 +01:00
use ctrl+arrow rather than alt+arrow
This commit is contained in:
parent
03ef47c8a5
commit
d2a2faae0d
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue