Skip to content

Commit

Permalink
Add space after arrow due for Konsole
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementTsang committed Feb 26, 2020
1 parent cdf464f commit 5d90c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/canvas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1406,9 +1406,9 @@ impl Painter {
let mut mem = "Mem%(m)".to_string();

let direction_val = if app_state.process_sorting_reverse {
"⯆".to_string()
"⯆ ".to_string()
} else {
"⯅".to_string()
"⯅ ".to_string()
};

match app_state.process_sorting_type {
Expand Down

0 comments on commit 5d90c23

Please sign in to comment.