From: wmorgan Date: Thu, 28 Dec 2006 19:26:23 +0000 (+0000) Subject: made the "indirect participant" indicator a + instead of a -. just fucking felt like it. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=c5d9c8b9d3396b227baa16c301b49b880afa7ac4;p=sup 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 --- diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb index aa1b6de..84c3441 100644 --- 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} "] } +