sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 05e54f4de9fe91ad94ce36938b094f519a72a521
parent b4a3ad19b2cc8963e14cb5858b3bfe2d5cbff839
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Mon, 12 Feb 2007 23:32:33 +0000

bugfix for archived events

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@325 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/modes/inbox-mode.rb | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/sup/modes/inbox-mode.rb b/lib/sup/modes/inbox-mode.rb
@@ -26,7 +26,10 @@ class InboxMode < ThreadIndexMode
   end
 
   def handle_archived_update sender, t
-    hide_thread t if contains_thread? t
+    if contains_thread? t
+      hide_thread t
+      regen_text
+    end
   end
 
 # not quite working, and not sure if i like it anyways