From 68ccc3bceb886cfba6a703c0e95332d304d90572 Mon Sep 17 00:00:00 2001 From: EliteMasterEric <ericmyllyoja@gmail.com> Date: Tue, 1 Aug 2023 13:07:16 -0400 Subject: [PATCH] Fixed UI scaling issue (thanks Ian!!!) --- source/Main.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Main.hx b/source/Main.hx index 9b70549ab..1d7b73bb8 100644 --- a/source/Main.hx +++ b/source/Main.hx @@ -98,5 +98,6 @@ class Main extends Sprite // - It scans the class path and registers any HaxeUI components. Toolkit.init(); Toolkit.theme = 'dark'; // don't be cringe + Toolkit.autoScale = false; } }