Merge pull request #36 from ClementTsang/fix_arrow_issue

Add space after arrow due for Konsole
This commit is contained in:
Clement Tsang 2020-02-25 23:01:13 -05:00 committed by GitHub
commit 3eca695807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 {