mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-21 16:05:02 +02:00
Double the screen repaint delay
Greatly improves performance when a lot of output is being generated.
This commit is contained in:
@@ -40,7 +40,7 @@ class Boss(Thread):
|
|||||||
shutting_down = False
|
shutting_down = False
|
||||||
pending_title_change = pending_icon_change = None
|
pending_title_change = pending_icon_change = None
|
||||||
pending_color_changes = {}
|
pending_color_changes = {}
|
||||||
SCREEN_UPDATE_DELAY = 1 / 100 # seconds
|
SCREEN_UPDATE_DELAY = 2 / 100 # seconds
|
||||||
|
|
||||||
def __init__(self, window, window_width, window_height, opts, args):
|
def __init__(self, window, window_width, window_height, opts, args):
|
||||||
Thread.__init__(self, name='ChildMonitor')
|
Thread.__init__(self, name='ChildMonitor')
|
||||||
|
|||||||
Reference in New Issue
Block a user