From 937fc20cabe4f845236c6126b02f2928d144793e Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 24 Jun 2011 10:21:41 +0300 Subject: [PATCH] * mu-msg-find: improve display of threaded messages --- src/mu-cmd-find.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/mu-cmd-find.c b/src/mu-cmd-find.c index 1f1484fc..639c3f0e 100644 --- a/src/mu-cmd-find.c +++ b/src/mu-cmd-find.c @@ -590,14 +590,10 @@ thread_indent (MuMsgIter *iter, gboolean color) fputs (MU_COLOR_YELLOW, stdout); if (!is_root) { - if (is_dup) - fputs ("==>", stdout); - else if (first_child) - fputs (empty_parent ? "*-> " : "`-> ", stdout); - else - fputs ("|-> ", stdout); + fputs (first_child ? "`" : "|", stdout); + fputs (empty_parent ? "*> " : is_dup ? "=> " : "-> ", stdout); } - + if (color) fputs (MU_COLOR_DEFAULT, stdout); }