summaryrefslogtreecommitdiff
path: root/alot/widgets
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2018-07-08 11:56:18 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2018-07-24 22:07:43 +0100
commit22772b7254ddea16a4e7f63b2e8240e1354bc7a2 (patch)
tree835c620a7bf8d762ae1321119b783da6094c5c4a /alot/widgets
parentf7ad7e403554473fe1454fecba255609b4a3f7d7 (diff)
remove unused static method
This was superseeded by settings.get_threadline_theming a while back
Diffstat (limited to 'alot/widgets')
-rw-r--r--alot/widgets/search.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/alot/widgets/search.py b/alot/widgets/search.py
index 0e504b2b..f89992f6 100644
--- a/alot/widgets/search.py
+++ b/alot/widgets/search.py
@@ -163,12 +163,3 @@ class ThreadlineWidget(urwid.AttrMap):
def get_thread(self):
return self.thread
-
- @staticmethod
- def _get_theme(component, focus=False):
- path = ['search', 'threadline', component]
- if focus:
- path.append('focus')
- else:
- path.append('normal')
- return settings.get_theming_attribute(path)