From 90eb6489a2f56aecde4a87c4b7b2f3e59e655f59 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Sun, 3 Nov 2024 15:20:40 -0600 Subject: [PATCH] vxfw(RichText): use cell style for ellipsis --- src/vxfw/RichText.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vxfw/RichText.zig b/src/vxfw/RichText.zig index f84fe90..c287c3b 100644 --- a/src/vxfw/RichText.zig +++ b/src/vxfw/RichText.zig @@ -83,6 +83,7 @@ pub fn draw(self: *const RichText, ctx: vxfw.DrawContext) Allocator.Error!vxfw.S { surface.writeCell(col, row, .{ .char = .{ .grapheme = "…", .width = 1 }, + .style = cell.style, }); col = container_size.width; continue;