From 01885ae2a346162c67af8192b0f50bb4c6d7194c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 20 Oct 2016 14:27:43 +0530 Subject: [PATCH] Reduce the update debounce interval for smoother interactive editing --- kitty/term.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/term.py b/kitty/term.py index 79f4fbc75..76ca6c750 100644 --- a/kitty/term.py +++ b/kitty/term.py @@ -61,7 +61,7 @@ class TerminalWidget(QWidget): t.timeout.connect(self.do_layout) self.debounce_update_timer = t = QTimer(self) t.setSingleShot(True) - t.setInterval(50) + t.setInterval(20) t.timeout.connect(self.do_update_screen) self.pending_update = QRegion()