summaryrefslogtreecommitdiff
path: root/alot/commands/thread.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-02-05 13:45:31 +0100
committerAnton Khirnov <anton@khirnov.net>2020-02-05 14:26:33 +0100
commite331cc44b672d39e09b5c971c4f3a99d5a3c93cc (patch)
tree3070b30c1ad593c1e68a3611a967285bd91d44c3 /alot/commands/thread.py
parent8fa596d425a563ab018be05e44b82d0ab76a6b31 (diff)
buffers/thread: drop support for auto-read tagging
It's pointless complexity that I do not need.
Diffstat (limited to 'alot/commands/thread.py')
-rw-r--r--alot/commands/thread.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 2ac3f335..468ae149 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -1110,14 +1110,6 @@ class TagCommand(Command):
def refresh_widgets():
for mt in messagetrees:
mt.refresh()
-
- # put currently selected message id on a block list for the
- # auto-remove-unread feature. This makes sure that explicit
- # tag-unread commands for the current message are not undone on the
- # next keypress (triggering the autorm again)...
- mid = tbuffer.get_selected_mid()
- tbuffer._auto_unread_dont_touch_mids.add(mid)
-
tbuffer.refresh()
tags = [t for t in self.tagsstring.split(',') if t]