diff --git a/src/Grid.zig b/src/Grid.zig index 605f7be61..1c89771fb 100644 --- a/src/Grid.zig +++ b/src/Grid.zig @@ -510,6 +510,9 @@ pub fn updateCell( break :colors res; }; + // If we are a trailing spacer, we never render anything. + if (cell.attrs.wide_spacer_tail == 1) return true; + // Calculate the amount of space we need in the cells list. const needed = needed: { var i: usize = 0;