From 93d05c6a8e00a1bc86995ed5ab440dbdb91f8e9f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 24 Mar 2020 08:58:11 +0530 Subject: [PATCH] Fix #1867718 [Name of shortcut contains @ in the Shortcuts screen](https://bugs.launchpad.net/calibre/+bug/1867718) --- src/calibre/gui2/actions/preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/actions/preferences.py b/src/calibre/gui2/actions/preferences.py index 48ceb4db9b..665a335251 100644 --- a/src/calibre/gui2/actions/preferences.py +++ b/src/calibre/gui2/actions/preferences.py @@ -28,7 +28,7 @@ class PreferencesAction(InterfaceAction): cm = partial(self.create_menu_action, pm) if isosx: pm.addAction(QIcon(I('config.png')), _('Preferences'), self.do_config) - cm('welcome wizard', _('Run Welcome &wizard'), + cm('welcome wizard', _('Run Welcome wizard'), icon='wizard.png', triggered=self.gui.run_wizard) cm('plugin updater', _('Get plugins to enhance calibre'), icon='plugins/plugin_updater.png', triggered=self.get_plugins)