summaryrefslogtreecommitdiff
path: root/alot/widgets.py
diff options
context:
space:
mode:
authordtk <dtk@gmx.de>2012-01-28 17:48:12 +0100
committerdtk <dtk@gmx.de>2012-01-28 17:48:12 +0100
commit24e4bbe592213e90d76d37cc703d34a93edbbda1 (patch)
tree59d3ad61a62b1086b12049a5f0d81e55b05d7c92 /alot/widgets.py
parent1a3f0f8aec9d843da98e527083f1dff8e4ed0b18 (diff)
Remove duplicate `has_themeing()` method
Adjust calls to address remaining `has_theming()` method. Conflicts: alot/settings.py
Diffstat (limited to 'alot/widgets.py')
-rw-r--r--alot/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/widgets.py b/alot/widgets.py
index 164643c6..a85e31e8 100644
--- a/alot/widgets.py
+++ b/alot/widgets.py
@@ -209,7 +209,7 @@ class ThreadlineWidget(urwid.AttrMap):
if focus:
theme += '_focus'
highlight_theme += '_focus'
- if config.has_themeing(highlight_theme):
+ if config.has_theming(highlight_theme):
theme = highlight_theme
elif focus:
theme = theme + '_focus'