From e525aef5c2eecf84d541ce83a71fa52d4d443080 Mon Sep 17 00:00:00 2001 From: n loewen Date: Sun, 8 Jun 2025 10:17:37 +0100 Subject: [PATCH] refactor: Revert screen timeout to original 10ms value --- gtm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtm b/gtm index a840a58..bc3ef2c 100755 --- a/gtm +++ b/gtm @@ -1446,7 +1446,7 @@ def main(stdscr, filename, show_add, show_del, mouse, show_diff=True, wrap_lines except: pass stdscr.keypad(True) - stdscr.timeout(50) # Less aggressive timeout (50ms instead of 10ms) + stdscr.timeout(10) if curses.has_colors(): curses.use_default_colors()