From d871cf645f96402a44c517b44fe64d6f68fa768a Mon Sep 17 00:00:00 2001 From: Digital Studium Date: Tue, 17 Dec 2024 22:21:05 +0300 Subject: [PATCH] Fix delete popup --- kls | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kls b/kls index 5a32502..2cacda0 100755 --- a/kls +++ b/kls @@ -242,6 +242,8 @@ async def confirm_action(message: str) -> bool: if key.lower() == 'y': return True elif key.lower() == 'n': + popup.clear() # Clear the popup window + popup.refresh() # Refresh the window to hide it return False