From 7b3be8ed38180c811fd638f5ce9a980402eb1b78 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 14 Jan 2018 11:56:54 +0530 Subject: [PATCH] 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) --- src/calibre/gui2/metadata/diff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/metadata/diff.py b/src/calibre/gui2/metadata/diff.py index 62149d9448..11f861bf23 100644 --- a/src/calibre/gui2/metadata/diff.py +++ b/src/calibre/gui2/metadata/diff.py @@ -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: