diff options
Diffstat (limited to 'src/print.rs')
| -rw-r--r-- | src/print.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.rs b/src/print.rs index 421efa3..39a4382 100644 --- a/src/print.rs +++ b/src/print.rs @@ -155,7 +155,7 @@ pub fn print_legende_line() { val, element.fg, element.bg, element.character ); } - println!(); + println!("{}", ERASE_LINE_END); } // TODO: Simplify this function @@ -180,7 +180,7 @@ pub fn print_ping_line(states: &Vec<State>) { } } - println!(); + println!("{}", ERASE_LINE_END); } fn get_symbol_and_colors_for_rrt(rrt: u64) -> (&'static str, &'static str, &'static str) { |