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

only use auto scale if SCALE env not set
pull/36458/head
David 2 weeks ago committed by GitHub
parent 53ff5413cd
commit 40a1af97b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      system/ui/lib/application.py

@ -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

Loading…
Cancel
Save