https://bugs.kde.org/show_bug.cgi?id=382834
Bug ID: 382834
Summary: LockScreenUi.qml uses easing and not easing.type on
line 98
Product: plasma-integration
Version: unspecified
Platform: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: general
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
I was trying to test an issue with the lockscreen wallpaper and I was using the
kscreenlocker_greet --testing to test the lock screen. On the console output I
noticed the line "Unable to assign int to QEasingCurve." After searching
online, I noticed that the field easing should be easing.type on line 98 of
root/lookandfeel/contents/lockscreen/LockScreenUi.qml of the plasma-workspace
project.
I changed it from:
PropertyAnimation { id: stateChangeAnimation; properties: "y"; duration: 300;
easing: Easing.InQuad}
to:
PropertyAnimation { id: stateChangeAnimation; properties: "y"; duration: 300;
easing.type: Easing.InQuad}
The error went away and I actually saw an animation.
I did not see a placeholder for plasma-workspace in the bug report.
Let me know if you need me to create a diff for this. I also saw this as part
of org.kde.breeze.desktop package in my plasma/look-and-feel directory. I am
guessing that this is the origin of this file.
--
You are receiving this mail because:
You are watching all bug changes.