From 1f036e06a2ebbeec6201283cbd220fcbffd79028 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Tue, 19 May 2026 11:38:13 +0700 Subject: [PATCH] Always call handle_key to allow scroll during processing --- tui/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tui/app.py b/tui/app.py index 947b8ff..bff4e12 100644 --- a/tui/app.py +++ b/tui/app.py @@ -65,5 +65,4 @@ class HendrikTUI: key = stdscr.getch() except KeyboardInterrupt: break - if not self.processing: - handle_key(self, stdscr, key) + handle_key(self, stdscr, key)