commit c5d9c8b9d3396b227baa16c301b49b880afa7ac4
parent 5ae3730ff0e6939428c73d4c585e8bee3ca9bbd8
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date: Thu, 28 Dec 2006 19:26:23 +0000
made the "indirect participant" indicator a + instead of a -. just fucking felt like it.
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@106 5c8cc53c-5e98-4d25-b20a-d8db53a31250
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb
@@ -358,7 +358,7 @@ protected
[base_color, sprintf("%-#{@from_width}s", from)],
[:starred_color, starred ? "*" : " "],
[:none, t.size == 1 ? " " * (@size_width + 2) : sprintf("(%#{@size_width}d)", t.size)],
- [:to_me_color, dp ? " >" : (p ? ' -' : " ")],
+ [:to_me_color, dp ? " >" : (p ? ' +' : " ")],
[base_color, t.subj + (t.subj.empty? ? "" : " ")],
] +
(t.labels - @hidden_labels).map { |label| [:label_color, "+#{label} "] } +