mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-01 09:18:07 +00:00
Fix easing type
Only easing is not enough :P
This commit is contained in:
parent
3b10dece0c
commit
29f0385734
1 changed files with 4 additions and 4 deletions
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue