mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Workaround for ctrl+f/t not working on windows
This commit is contained in:
parent
06a9c77ace
commit
c034aeca4a
@ -164,13 +164,15 @@ SHORTCUTS = {
|
|||||||
),
|
),
|
||||||
|
|
||||||
'toggle_toc': desc(
|
'toggle_toc': desc(
|
||||||
v"['Ctrl+t']",
|
# on windows ctrl+t results in ctrl+\u0014
|
||||||
|
v"['Ctrl+t', 'Ctrl+\u0014']",
|
||||||
'ui',
|
'ui',
|
||||||
_('Show/hide Table of Contents'),
|
_('Show/hide Table of Contents'),
|
||||||
),
|
),
|
||||||
|
|
||||||
'start_search': desc(
|
'start_search': desc(
|
||||||
v"['/', 'Ctrl+f']",
|
# on windows ctrl+f results in ctrl+\u0006
|
||||||
|
v"['/', 'Ctrl+f', 'Ctrl+\u0006']",
|
||||||
'ui',
|
'ui',
|
||||||
_('Start search'),
|
_('Start search'),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user