padding needs to be sent to termio

This commit is contained in:
Mitchell Hashimoto
2022-11-14 17:25:35 -08:00
parent d7d12d9469
commit 860fbc3aee
4 changed files with 16 additions and 4 deletions

View File

@@ -172,7 +172,7 @@ fn drainMailbox(self: *Thread) !void {
log.debug("mailbox message={}", .{message});
switch (message) {
.resize => |v| try self.impl.resize(v.grid_size, v.screen_size),
.resize => |v| try self.impl.resize(v.grid_size, v.screen_size, v.padding),
.write_small => |v| try self.impl.queueWrite(v.data[0..v.len]),
.write_stable => |v| try self.impl.queueWrite(v),
.write_alloc => |v| {