Metadata review dialog: Change accelerator for reject button to Alt+e so it does not conflict with the rating field. Fixes #1743157 [review downloaded metadata - accelerator key alt+R does not activate Reject](https://bugs.launchpad.net/calibre/+bug/1743157)

This commit is contained in:
Kovid Goyal 2018-01-14 11:56:54 +05:30
parent ee50b9a9d6
commit 7b3be8ed38
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -579,7 +579,7 @@ class CompareMany(QDialog):
if reject_all_tooltip:
b.setToolTip(reject_all_tooltip)
b.clicked.connect(self.reject_all_remaining)
self.sb = b = bb.addButton(_('&Reject'), bb.ActionRole)
self.sb = b = bb.addButton(_('R&eject'), bb.ActionRole)
b.clicked.connect(partial(self.next_item, False))
b.setIcon(QIcon(I('minus.png'))), b.setAutoDefault(False)
if reject_button_tooltip: