summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/DiveDetails.qml40
1 files changed, 20 insertions, 20 deletions
diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml
index 3c17641c6..aa344817b 100644
--- a/mobile-widgets/qml/DiveDetails.qml
+++ b/mobile-widgets/qml/DiveDetails.qml
@@ -85,31 +85,31 @@ Kirigami.Page {
from: "view"
to: "*"
ParallelAnimation {
- SequentialAnimation {
- NumberAnimation {
- target: detailsEditFlickable
- properties: "visible"
- from: 0
- to: 1
- duration: 10
+ SequentialAnimation {
+ NumberAnimation {
+ target: detailsEditFlickable
+ properties: "visible"
+ from: 0
+ to: 1
+ duration: 10
+ }
+ ScaleAnimator {
+ target: detailsEditFlickable
+ from: 0.3
+ to: 1
+ duration: 400
+ easing.type: Easing.InOutQuad
+ }
}
- ScaleAnimator {
+
+ NumberAnimation {
target: detailsEditFlickable
- from: 0.3
- to: 1
- duration: 400
+ property: "contentY"
+ to: 0
+ duration: 200
easing.type: Easing.InOutQuad
}
}
-
- NumberAnimation {
- target: detailsEditFlickable
- property: "contentY"
- to: 0
- duration: 200
- easing.type: Easing.InOutQuad
- }
- }
},
Transition {
from: "*"