From 2a3fde41464d8712aee3268cfdb497d84fb20aef Mon Sep 17 00:00:00 2001 From: Damocles Date: Sat, 18 Apr 2026 15:52:01 +0200 Subject: [PATCH] fix duplicate-property-binding in lock surface, update qmllint baseline --- shell/lock/LockSurface.qml | 4 ++-- test/qmllint-baseline.txt | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/shell/lock/LockSurface.qml b/shell/lock/LockSurface.qml index 1755dfd..f98d502 100644 --- a/shell/lock/LockSurface.qml +++ b/shell/lock/LockSurface.qml @@ -121,14 +121,14 @@ WlSessionLockSurface { width: 320 height: _col.height - opacity: 0 - scale: 0.9 NumberAnimation on opacity { + from: 0 to: 1 duration: 300 easing.type: Easing.OutCubic } NumberAnimation on scale { + from: 0.9 to: 1 duration: 300 easing.type: Easing.OutCubic diff --git a/test/qmllint-baseline.txt b/test/qmllint-baseline.txt index b91f162..d417ffc 100644 --- a/test/qmllint-baseline.txt +++ b/test/qmllint-baseline.txt @@ -12,8 +12,6 @@ shell/applets/TemperatureApplet.qml: Unqualified access [unqualified] shell/applets/VolumeApplet.qml: Unqualified access [unqualified] shell/lock/Lock.qml: Unqualified access [unqualified] shell/lock/LockAuth.qml: Unqualified access [unqualified] -shell/lock/LockSurface.qml: Cannot combine value source and binding on property "opacity" [duplicate-property-binding] -shell/lock/LockSurface.qml: Cannot combine value source and binding on property "scale" [duplicate-property-binding] shell/lock/LockSurface.qml: Unqualified access [unqualified] shell/modules/BackgroundOverlay.qml: Type PanelWindow is not creatable. [uncreatable-type] shell/modules/BacklightModule.qml: Member "screen" not found on type "QObject" [missing-property]