From 60a717365c8b1612b9e7b81af7f8b8eaf62e5442 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 18 Feb 2022 16:19:12 +0100 Subject: [PATCH] ui: Remove unifont glyphs from the ASCII range --- main/source/init/tasks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/source/init/tasks.cpp b/main/source/init/tasks.cpp index fc57a928b..f69dbfe18 100644 --- a/main/source/init/tasks.cpp +++ b/main/source/init/tasks.cpp @@ -125,7 +125,7 @@ namespace hex::init { }; ImWchar unifontRange[] = { - 0x0020, 0xFFF0, 0 + 0x0100, 0xFFF0, 0 }; float fontSize = 13.0F * ImHexApi::System::getGlobalScale();