From 0c8f4500a9e9dc958c30ba2be509ab7521c74b13 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 6 Oct 2025 15:22:29 -0400 Subject: [PATCH] Disabled dynamic scaling: only used on lockscreen --- Services/ScalingService.qml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Services/ScalingService.qml b/Services/ScalingService.qml index 0b8ef479..d85b9a3e 100644 --- a/Services/ScalingService.qml +++ b/Services/ScalingService.qml @@ -120,11 +120,12 @@ Singleton { readonly property int designScreenWidth: 2560 readonly property int designScreenHeight: 1440 function dynamicScale(aScreen) { - if (aScreen != null) { - var ratioW = aScreen.width / designScreenWidth - var ratioH = aScreen.height / designScreenHeight - return Math.min(ratioW, ratioH) - } return 1.0 + // if (aScreen != null) { + // var ratioW = aScreen.width / designScreenWidth + // var ratioH = aScreen.height / designScreenHeight + // return Math.min(ratioW, ratioH) + // } + // return 1.0 } }