talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit b917a52fa87e7152f3cafd8a9dc00bd762639ae5
parent 22a32c92603ba73754af64cd3b40de3d7c2f752a
Author: Ricardo Mones <ricardo@mones.org>
Date:   Mon, 23 Nov 2015 20:04:35 +0100

Use an arrow instead of ASCII chars

Diffstat:
Msrc/summaryview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/summaryview.c b/src/summaryview.c @@ -3396,7 +3396,7 @@ static inline void summary_set_header(SummaryView *summaryview, gchar *text[], to_text = to_text ? to_text : _("(No From)"); } } - snprintf(tmp2, BUFFSIZE-1, "--> %s", to_text); + snprintf(tmp2, BUFFSIZE-1, "➜ %s", to_text); tmp2[BUFFSIZE-1]='\0'; text[col_pos[S_COL_FROM]] = tmp2; }