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); }