mirror of https://github.com/sbt/sbt.git
Tree: Fix the pipe symbol to match the other UTF-8 symbols used
The "branching" symbols used to print the tree are UTF-8 characters. Make the pipe symbol be the matching UTF-8 character to close the tiny gap between symbols visible in the tree before.
This commit is contained in:
parent
f6493a2d5a
commit
0701df35a4
|
|
@ -36,7 +36,7 @@ object Tree {
|
|||
def showLine(isLast: Seq[Boolean]): String = {
|
||||
val initPrefix = init(isLast) {
|
||||
case true => " "
|
||||
case false => "| "
|
||||
case false => "│ "
|
||||
}.mkString
|
||||
|
||||
val lastPrefix = last(isLast) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue