From 29194b5e1e627b77f027c217967de9b58f9b1fc6 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Tue, 19 Feb 2013 14:57:14 +0100 Subject: [PATCH] fixed bug #1128376 (Configure shortcuts has two items called settings) Fixes: https://launchpad.net/bugs/112837 --- openlp/core/ui/mainwindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index a2ef572e0..04cb4ebcb 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -288,9 +288,9 @@ class Ui_MainWindow(object): # Give QT Extra Hint that this is the Preferences Menu Item self.settingsConfigureItem.setMenuRole(QtGui.QAction.PreferencesRole) self.settingsImportItem = create_action( - main_window, u'settingsImportItem', category=UiStrings().Settings, can_shortcuts=True) + main_window, u'settingsImportItem', category=UiStrings().Import, can_shortcuts=True) self.settingsExportItem = create_action( - main_window, u'settingsExportItem', category=UiStrings().Settings, can_shortcuts=True) + main_window, u'settingsExportItem', category=UiStrings().Export, can_shortcuts=True) action_list.add_category(UiStrings().Help, CategoryOrder.standard_menu) self.aboutItem = create_action(main_window, u'aboutItem', icon=u':/system/system_about.png', can_shortcuts=True, category=UiStrings().Help, triggers=self.onAboutItemClicked)