Fix pyinstaller for CI and Windows

This commit is contained in:
Stephen Horvath
2025-09-17 16:51:33 +10:00
parent 55580535db
commit 2a0675d3be
3 changed files with 4 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 178 KiB

View File

@@ -24,8 +24,9 @@ splash = Splash(
'splash.png',
binaries=a.binaries,
datas=a.datas,
text_pos=[4, 480],
text_size=6,
text_pos=(4, 480),
# Text doesn't scale on Linux, but does on Windows
text_size=12 if os.name == 'nt' else 6,
minify_script=True,
always_on_top=True,
)