From c7f3f47ac2687e443ca9eca06bb79905c1c0b9b8 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 3 Oct 2025 22:28:11 -0700 Subject: [PATCH] clear srcreen on init --- contact/__main__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contact/__main__.py b/contact/__main__.py index 689e686..57671db 100644 --- a/contact/__main__.py +++ b/contact/__main__.py @@ -103,6 +103,9 @@ def main(stdscr: curses.window) -> None: initialize_globals() logging.info("Starting main UI") + stdscr.clear() + stdscr.refresh() + try: with contextlib.redirect_stdout(output_capture), contextlib.redirect_stderr(output_capture): main_ui(stdscr)