From 9d89d162c2c0774aeaa3b5a1af80e816a4456f7c Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 15 Mar 2021 13:20:16 -0400 Subject: [PATCH] Clear the bottom line before exiting --- standard_renderer.go | 1 + 1 file changed, 1 insertion(+) diff --git a/standard_renderer.go b/standard_renderer.go index 4a4079a..bdaf977 100644 --- a/standard_renderer.go +++ b/standard_renderer.go @@ -64,6 +64,7 @@ func (r *standardRenderer) start() { // stop permanently halts the renderer. func (r *standardRenderer) stop() { r.flush() + clearLine(r.out) r.done <- struct{}{} }