summaryrefslogtreecommitdiff
path: root/alot/commands/globals.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/globals.py')
-rw-r--r--alot/commands/globals.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 81385456..48f52cb0 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -414,9 +414,11 @@ class HelpCommand(Command):
ckey = 'cancel'
titletext = 'Bindings Help (%s cancels)' % ckey
+ text_att = settings.get_theming_attribute('help', 'text')
+ title_att = settings.get_theming_attribute('help', 'title')
box = widgets.DialogBox(body, titletext,
- bodyattr='help_text',
- titleattr='help_title')
+ bodyattr=text_att,
+ titleattr=title_att)
# put promptwidget as overlay on main widget
overlay = urwid.Overlay(box, ui.mainframe, 'center',