* mu-msg-find: improve display of threaded messages

This commit is contained in:
Dirk-Jan C. Binnema 2011-06-24 10:21:41 +03:00
parent 32127cdc9f
commit 937fc20cab
1 changed files with 3 additions and 7 deletions

View File

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