From 2ff3814a80dee126a37192028860d009d1d48401 Mon Sep 17 00:00:00 2001 From: Charles Haley Date: Sun, 5 Jun 2022 16:07:13 +0100 Subject: [PATCH] Forgot the keyboard accelerators. --- src/calibre/gui2/preferences/create_custom_column.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py index de66d48b39..c6f925124b 100644 --- a/src/calibre/gui2/preferences/create_custom_column.py +++ b/src/calibre/gui2/preferences/create_custom_column.py @@ -326,11 +326,11 @@ class CreateCustomColumn(QDialog): # bool formatting h1 = QHBoxLayout() - self.bool_show_icon_button = QRadioButton('Icon') + self.bool_show_icon_button = QRadioButton('&Icon') h1.addWidget(self.bool_show_icon_button) - self.bool_show_text_button = QRadioButton('Text') + self.bool_show_text_button = QRadioButton('&Text') h1.addWidget(self.bool_show_text_button) - self.bool_show_both_button = QRadioButton('Both') + self.bool_show_both_button = QRadioButton('&Both') h1.addWidget(self.bool_show_both_button) self.bool_button_group = QGroupBox() self.bool_button_group.setLayout(h1)