mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-04 19:22:35 +02:00
Fix #1943343 [Edit Metadata, Keyboard shortcut invalid](https://bugs.launchpad.net/calibre/+bug/1943343)
This commit is contained in:
parent
4e9bc479c3
commit
3e27568240
1 changed files with 2 additions and 2 deletions
|
|
@ -84,11 +84,11 @@ def setupUi(self, *args): # {{{
|
|||
self.button_box = bb = QDialogButtonBox(self)
|
||||
self.button_box.accepted.connect(self.accept)
|
||||
self.button_box.rejected.connect(self.reject)
|
||||
self.next_button = QPushButton(QIcon(I('forward.png')), _('&Next'),
|
||||
self.next_button = QPushButton(QIcon(I('forward.png')), _('Next'),
|
||||
self)
|
||||
self.next_button.setShortcut(QKeySequence('Alt+Right'))
|
||||
self.next_button.clicked.connect(self.next_clicked)
|
||||
self.prev_button = QPushButton(QIcon(I('back.png')), _('&Previous'),
|
||||
self.prev_button = QPushButton(QIcon(I('back.png')), _('Previous'),
|
||||
self)
|
||||
self.prev_button.setShortcut(QKeySequence('Alt+Left'))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue