From 9250e24e27b7c47207a9c5aa8772bd1144c2df75 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sun, 6 Jul 2025 06:37:17 -0400 Subject: [PATCH] Revert "Improve TUI interaction timing" --- src/password_manager/manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/password_manager/manager.py b/src/password_manager/manager.py index 2f49ed6..34fe4e0 100644 --- a/src/password_manager/manager.py +++ b/src/password_manager/manager.py @@ -1995,8 +1995,7 @@ class PasswordManager: totp_list.sort(key=lambda t: t[0].lower()) print(colored("Press 'b' then Enter to return to the menu.", "cyan")) while True: - # Clear screen while preserving scrollback - print("\033[2J\033[H", end="") + print("\033c", end="") print(colored("Press 'b' then Enter to return to the menu.", "cyan")) generated = [t for t in totp_list if not t[3]] imported_list = [t for t in totp_list if t[3]]