Added in additional environment variables to scale off of.

This commit is contained in:
Adam Harrison 2021-11-23 22:30:35 -05:00
parent d7b6fe3d42
commit 7ee23da187
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
VERSION = "@PROJECT_VERSION@"
MOD_VERSION = "2"
SCALE = tonumber(os.getenv("LITE_SCALE")) or SCALE
SCALE = tonumber(os.getenv("LITE_SCALE") or os.getenv("GDK_SCALE") or os.getenv("QT_SCALE_FACTOR")) or SCALE
PATHSEP = package.config:sub(1, 1)
EXEDIR = EXEFILE:match("^(.+)[/\\][^/\\]+$")