mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +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 {
|
||||
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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue