Fix easing type

Only easing is not enough :P
This commit is contained in:
Pier Luigi Fiorini 2014-12-05 20:01:27 +01:00
parent 3b10dece0c
commit 29f0385734

View file

@ -269,7 +269,7 @@ Rectangle {
PropertyAnimation {
target: windowsLayerBackground
duration: units.longDuration
easing: Easing.InOutQuad
easing.type: Easing.InOutQuad
properties: "opacity"
}
}
@ -280,19 +280,19 @@ Rectangle {
PropertyAnimation {
target: windowsLayerBackground
duration: units.longDuration
easing: Easing.InOutQuad
easing.type: Easing.InOutQuad
properties: "opacity"
}
PropertyAnimation {
target: windowsLayout
duration: units.shortDuration
easing: Easing.InOutQuad
easing.type: Easing.InOutQuad
properties: "scale"
}
PropertyAnimation {
target: windowsLayer
duration: units.shortDuration
easing: Easing.InOutQuad
easing.type: Easing.InOutQuad
properties: "contentX"
}
}