diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-08-28 11:38:11 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-08-28 11:38:11 -0700 |
| commit | 5168dc76453c706cebaf735ff7fcad233aa72934 (patch) | |
| tree | adbe49a5ac055eca23a9b453b68cb7116a929042 /src/termio/Thread.zig | |
| parent | 2cc1e4371651ccd692f3e8e8ba5a5cf731b2e21f (diff) | |
renderer: do not render if synchronized output is on
Diffstat (limited to 'src/termio/Thread.zig')
| -rw-r--r-- | src/termio/Thread.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termio/Thread.zig b/src/termio/Thread.zig index 6f2a4af3f..0b345ac1f 100644 --- a/src/termio/Thread.zig +++ b/src/termio/Thread.zig @@ -29,7 +29,7 @@ const Coalesce = struct { /// The number of milliseconds before we reset the synchronized output flag /// if the running program hasn't already. -const sync_reset_ms = 5000; +const sync_reset_ms = 1000; /// Allocator used for some state alloc: std.mem.Allocator, |
