From a759bb53ffdab6d65d3286bba3a04fced4426e2b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 26 Apr 2021 17:54:23 +0530 Subject: [PATCH] Fix #1926125 [Table of Contents editor: conflicting accelerator keys](https://bugs.launchpad.net/calibre/+bug/1926125) --- src/calibre/gui2/toc/location.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/toc/location.py b/src/calibre/gui2/toc/location.py index 21d0f27c22..47fdc77e91 100644 --- a/src/calibre/gui2/toc/location.py +++ b/src/calibre/gui2/toc/location.py @@ -161,7 +161,7 @@ class ItemEdit(QWidget): la.setWordWrap(True) l.addWidget(la) - f.la2 = la = QLabel(''+_('&Name of the ToC entry:')) + f.la2 = la = QLabel(''+_('Na&me of the ToC entry:')) l.addWidget(la) self.name = QLineEdit(self) self.name.setPlaceholderText(_('(Untitled)'))