From 259ee6c6dd6660772b76ce7696b017eee83e0cc8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 31 Mar 2012 00:11:00 +0530 Subject: [PATCH] Fix #969418 (Unable to access preferences menu (mac)) --- src/calibre/gui2/actions/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/actions/add.py b/src/calibre/gui2/actions/add.py index bbdef5b1b5..cf47684063 100644 --- a/src/calibre/gui2/actions/add.py +++ b/src/calibre/gui2/actions/add.py @@ -71,7 +71,7 @@ class AddAction(InterfaceAction): ma('add-formats', _('Add files to selected book records'), triggered=self.add_formats, shortcut=_('Shift+A')) self.add_menu.addSeparator() - ma('add-config', _('Configure the adding of books'), + ma('add-config', _('Control the adding of books'), triggered=self.add_config) self.qaction.triggered.connect(self.add_books)