From 46eefef54b314a36b4c745c8305ef081034eb465 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 20 Dec 2024 10:08:38 +0530 Subject: [PATCH] ... --- kitty/decorations.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/decorations.c b/kitty/decorations.c index b815dfb21..b248d6994 100644 --- a/kitty/decorations.c +++ b/kitty/decorations.c @@ -599,6 +599,7 @@ render_box_char(char_type ch, uint8_t *buf, unsigned width, unsigned height, dou switch(ch) { default: log_error("Unknown box drawing character: U+%x rendered as blank", ch); break; + case L'█': memset(canvas.mask, 255, width * height * sizeof(canvas.mask[0])); break; C(L'─', hline, 1); C(L'━', hline, 3);