From 4b33f07b734293cecd89671826d8d82542f9b501 Mon Sep 17 00:00:00 2001 From: Qwerasd Date: Mon, 8 Apr 2024 23:10:00 -0400 Subject: [PATCH] font/sprite: Fix U+255D MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Double Up and Left '╝' previously had a hole in the bottom, extend line to fill gap. --- src/font/sprite/Box.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font/sprite/Box.zig b/src/font/sprite/Box.zig index ae991f4b5..0cc1980d1 100644 --- a/src/font/sprite/Box.zig +++ b/src/font/sprite/Box.zig @@ -928,7 +928,7 @@ fn draw_double_up_and_left(self: Box, canvas: *font.sprite.Canvas) void { self.vline(canvas, 0, hmid + 0 * thick_px + thick_px, vmid, thick_px); self.vline(canvas, 0, hmid + 2 * thick_px + thick_px, vmid + 2 * thick_px, thick_px); self.hline(canvas, 0, vmid, hmid, thick_px); - self.hline(canvas, 0, vmid, hmid + 2 * thick_px, thick_px); + self.hline(canvas, 0, vmid + 2 * thick_px, hmid + 2 * thick_px, thick_px); } fn draw_vertical_single_and_right_double(self: Box, canvas: *font.sprite.Canvas) void {