diff --git a/applets/devicenotifier/package/contents/ui/FullRepresentation.qml b/applets/devicenotifier/package/contents/ui/FullRepresentation.qml --- a/applets/devicenotifier/package/contents/ui/FullRepresentation.qml +++ b/applets/devicenotifier/package/contents/ui/FullRepresentation.qml @@ -225,7 +225,7 @@ popupIconTimer.restart() } } - Behavior on height { NumberAnimation { duration: units.shortDuration * 3 } } + Behavior on height { NumberAnimation { duration: units.shortDuration } } } } } diff --git a/applets/systemtray/package/contents/ui/ExpanderArrow.qml b/applets/systemtray/package/contents/ui/ExpanderArrow.qml --- a/applets/systemtray/package/contents/ui/ExpanderArrow.qml +++ b/applets/systemtray/package/contents/ui/ExpanderArrow.qml @@ -37,7 +37,7 @@ anchors.fill: parent onClicked: root.expanded = !root.expanded - readonly property int arrowAnimationDuration: units.shortDuration * 3 + readonly property int arrowAnimationDuration: units.shortDuration PlasmaCore.Svg { id: arrowSvg diff --git a/lookandfeel/contents/components/ActionButton.qml b/lookandfeel/contents/components/ActionButton.qml --- a/lookandfeel/contents/components/ActionButton.qml +++ b/lookandfeel/contents/components/ActionButton.qml @@ -44,7 +44,7 @@ opacity: activeFocus || containsMouse ? 1 : 0.85 Behavior on opacity { PropertyAnimation { // OpacityAnimator makes it turn black at random intervals - duration: units.longDuration * 2 + duration: units.longDuration easing.type: Easing.InOutQuad } } @@ -59,7 +59,7 @@ opacity: activeFocus || containsMouse ? (softwareRendering ? 0.8 : 0.15) : (softwareRendering ? 0.6 : 0) Behavior on opacity { PropertyAnimation { // OpacityAnimator makes it turn black at random intervals - duration: units.longDuration * 3 + duration: units.longDuration easing.type: Easing.InOutQuad } } diff --git a/lookandfeel/contents/components/UserDelegate.qml b/lookandfeel/contents/components/UserDelegate.qml --- a/lookandfeel/contents/components/UserDelegate.qml +++ b/lookandfeel/contents/components/UserDelegate.qml @@ -72,7 +72,7 @@ Behavior on width { PropertyAnimation { from: faceSize - duration: units.longDuration * 2; + duration: units.longDuration; } } width: isCurrent ? faceSize : faceSize - units.largeSpacing