summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ui/components/processes.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ui/components/processes.rs b/src/ui/components/processes.rs
index 2be0d51..c548113 100644
--- a/src/ui/components/processes.rs
+++ b/src/ui/components/processes.rs
@@ -469,7 +469,7 @@ impl ProcessList {
for i in 0..*ind {
if branches.len() > i && branches[i] {
s.push(' ');
- s.push('│');
+ s.push('┃');
} else {
s.push(' ');
}
@@ -481,27 +481,27 @@ impl ProcessList {
if p.is_thread {
if has_sibling && is_first {
s.push(' ');
- s.push('╞');
+ s.push('┠');
} else if has_sibling {
s.push(' ');
- s.push('╞');
+ s.push('┠');
} else {
s.push(' ');
- s.push('╘');
+ s.push('┖');
}
- s.push('═');
+ s.push('┄');
} else {
if has_sibling && is_first {
s.push(' ');
- s.push('├');
+ s.push('┣');
} else if has_sibling {
s.push(' ');
- s.push('├');
+ s.push('┣');
} else {
s.push(' ');
- s.push('└');
+ s.push('┗');
}
- s.push('─');
+ s.push('━');
}
s.push('>');
}