From 17798144a636f54e79bca8982c2bba3ed5bcc1ae Mon Sep 17 00:00:00 2001 From: nebula Date: Wed, 23 Apr 2025 23:05:06 +0000 Subject: [PATCH] a --- bink.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bink.py b/bink.py index dcb53fe..92c6633 100755 --- a/bink.py +++ b/bink.py @@ -138,7 +138,7 @@ class ActionBox(urwid.ListBox): elif keyl == "r": app.update() elif keyl in ("q", "x"): - app.exit() + app.terminate() elif keyl == " ": super().keypress(size, "page down") elif keyl in ("j", "n", "ctrl n"): @@ -165,4 +165,4 @@ app = App() try: app.loop.run() except KeyboardInterrupt: - app.exit() + app.terminate()