ui: only auto scale on PC if SCALE env not set (#36455)

only use auto scale if SCALE env not set
This commit is contained in:
David
2025-10-24 21:12:45 -05:00
committed by GitHub
parent 53ff5413cd
commit 40a1af97b9
+1 -1
View File
@@ -141,7 +141,7 @@ class GuiApplication:
self._width = width
self._height = height
if PC and SCALE == 1.0:
if PC and os.getenv("SCALE") is None:
self._scale = self._calculate_auto_scale()
else:
self._scale = SCALE