plugins/private/Windowheap: Use InOutCubic easing
All transitions correspond to visible to visible changes, and should have InOutCubic easing as per HIG.
This commit is contained in:
parent
acb0dc4c24
commit
8774a0114c
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ Item {
|
|||
enabled: thumb.state === "active-normal" && thumb.windowHeap.animationEnabled && thumb.animationEnabled && !thumb.activeDragHandler.active
|
||||
NumberAnimation {
|
||||
duration: thumb.windowHeap.animationDuration
|
||||
easing.type: Easing.OutCubic
|
||||
easing.type: Easing.InOutCubic
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -337,7 +337,7 @@ Item {
|
|||
NumberAnimation {
|
||||
duration: thumb.windowHeap.animationDuration
|
||||
properties: "x, y, width, height"
|
||||
easing.type: Easing.OutCubic
|
||||
easing.type: Easing.InOutCubic
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue