Merge branch 'save_alternate_cover-typo-fix' of https://github.com/chocolatechipcats/calibre

This commit is contained in:
Kovid Goyal 2023-05-24 11:05:50 +05:30
commit 7367f0f4cf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -835,7 +835,7 @@ class CoversView(QListView): # {{{
m.addAction(QIcon.ic('edit-copy.png'), _('Copy this cover to clipboard'), self.copy_cover)
m.addAction(QIcon.ic('save.png'), _('Save this cover to disk'), self.save_to_disk)
if self.book_id:
m.addAction(QIcon.ic('save.png'), _('Save this cover as in the book extra files'), self.save_alternate_cover)
m.addAction(QIcon.ic('save.png'), _('Save this cover in the book extra files'), self.save_alternate_cover)
m.exec(QCursor.pos())
@property