mirror of
https://github.com/Steve-Tech/YAFI.git
synced 2026-04-19 16:50:36 +00:00
Round scaling instead of flooring
This commit is contained in:
@@ -2,7 +2,7 @@ import os
|
||||
if os.name == 'nt' and os.environ.get('GDK_SCALE') is None:
|
||||
import ctypes
|
||||
scale_factor = ctypes.windll.shcore.GetScaleFactorForDevice(0)
|
||||
os.environ["GDK_SCALE"] = f"{scale_factor//100}"
|
||||
os.environ["GDK_SCALE"] = f"{round(scale_factor, -2)//100}"
|
||||
|
||||
from yafi import main
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user