From 4bcef332a507575e5972e1a719f6951cf151adf8 Mon Sep 17 00:00:00 2001 From: Nick Craver Date: Tue, 21 Sep 2021 14:11:38 -0400 Subject: [PATCH] fix: os fonts in theme renders There's a bug in the wiki ranges that I noticed in the final Ubuntu renders cutting off the Ubuntu logo, this should resolve it. Issue filed on nerd fonts to fix the wiki here: ryanoasis/nerd-fonts#667 --- src/image.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.go b/src/image.go index dcb1eda8..f9cc23a6 100644 --- a/src/image.go +++ b/src/image.go @@ -223,7 +223,7 @@ var doubleWidthRunes = []RuneRange{ {Start: '\u23fb', End: '\u23fe'}, {Start: '\u2b58', End: '\u2b58'}, // Font Logos - {Start: '\uf300', End: '\uf313'}, + {Start: '\uf300', End: '\uf31c'}, // Pomicons {Start: '\ue000', End: '\ue00d'}, }