commit 1064da8553261bdd1aad789e82ef000888c86fa4
parent 7c0e3b1549244ce23545d018dead9c5606fb7513
Author: Gregor Hoffleit <gregor@hoffleit.de>
Date: Thu, 27 May 2010 11:40:13 +0200
Bugfix: Set background color for starred column
For the sake of consistency, Sup should always use the starred_color for the
'starred' column in the thread-index-mode, whether there's a star or a blank.
Rationale: With this patch, I'm able to set the background color of the
thread-index to bg:7 without having to change my term's background color.
Without the patch, the background color shines through in the starred column.
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
@@ -885,7 +885,7 @@ protected
[
[:tagged_color, @tags.tagged?(t) ? ">" : " "],
[:date_color, date_widget_text],
- (starred ? [:starred_color, "*"] : [:none, " "]),
+ [:starred_color, (starred ? "*" : " ")],
] +
from +
[