commit ea82ba864377c3085da350a9476a587bb19ec6a9 parent 1a5eb40d84cc39bdc4420ff3e591068bdfbf6669 Author: sin <sin@2f30.org> Date: Sat, 3 Aug 2019 22:34:23 +0100 Clear screen on exit Diffstat:
M | noice.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/noice.c b/noice.c @@ -258,6 +258,8 @@ initcurses(void) void exitcurses(void) { + clear(); + refresh(); endwin(); /* Restore terminal */ }