diff --git a/src/calibre/gui2/bars.py b/src/calibre/gui2/bars.py index 72c19ad4b0..b1b0a3fb17 100644 --- a/src/calibre/gui2/bars.py +++ b/src/calibre/gui2/bars.py @@ -313,7 +313,9 @@ if isosx: self.setChecked(self.clone.isChecked()) self.setIcon(self.clone.icon()) if self.clone_shortcuts: - self.setShortcuts(self.clone.shortcuts()) + sc = self.clone.shortcut() + if sc and not sc.isEmpty(): + self.setText(self.text() + '\t' + sc.toString(sc.NativeText)) if self.clone.menu() is None: if not self.is_top_level: self.setMenu(None)