| ... | @@ -1186,7 +1186,6 @@ fn printTreeStep( | ... | @@ -1186,7 +1186,6 @@ fn printTreeStep( |
| 1186 | if (skip) return; | 1186 | if (skip) return; |
| 1187 | try printPrefix(parent_node, stderr, ttyconf); | 1187 | try printPrefix(parent_node, stderr, ttyconf); |
| 1188 | | 1188 | |
| 1189 | if (!first) try ttyconf.setColor(stderr, .dim); | | |
| 1190 | if (parent_node.parent != null) { | 1189 | if (parent_node.parent != null) { |
| 1191 | if (parent_node.last) { | 1190 | if (parent_node.last) { |
| 1192 | try printChildNodePrefix(stderr, ttyconf); | 1191 | try printChildNodePrefix(stderr, ttyconf); |
| ... | @@ -1198,6 +1197,8 @@ fn printTreeStep( | ... | @@ -1198,6 +1197,8 @@ fn printTreeStep( |
| 1198 | } | 1197 | } |
| 1199 | } | 1198 | } |
| 1200 | | 1199 | |
| | 1200 | if (!first) try ttyconf.setColor(stderr, .dim); |
| | 1201 | |
| 1201 | // dep_prefix omitted here because it is redundant with the tree. | 1202 | // dep_prefix omitted here because it is redundant with the tree. |
| 1202 | try stderr.writeAll(s.name); | 1203 | try stderr.writeAll(s.name); |
| 1203 | | 1204 | |