mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-02 09:13:44 +02:00
Change similar books series shortcut to Alt+Shift+S. Fixes #6630 (Problem with 'Similar books' options in v7.15)
This commit is contained in:
parent
1f922ddb5a
commit
0dc1e4cc33
1 changed files with 2 additions and 1 deletions
|
|
@ -21,7 +21,8 @@ def genesis(self):
|
|||
m = QMenu(self.gui)
|
||||
for text, icon, target, shortcut in [
|
||||
(_('Books by same author'), 'user_profile.svg', 'authors', _('Alt+A')),
|
||||
(_('Books in this series'), 'books_in_series.svg', 'series', _('Alt+S')),
|
||||
(_('Books in this series'), 'books_in_series.svg', 'series',
|
||||
_('Alt+Shift+S')),
|
||||
(_('Books by this publisher'), 'publisher.png', 'publisher', _('Alt+P')),
|
||||
(_('Books with the same tags'), 'tags.svg', 'tag', _('Alt+T')),]:
|
||||
ac = self.create_action(spec=(text, icon, None, shortcut),
|
||||
|
|
|
|||
Loading…
Reference in a new issue