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