aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/StackView.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-01-28 13:53:36 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-01-28 14:29:57 +0000
commitfce62e0d0fab90932f1afb7c1520b721f50cf7c1 (patch)
treebbb853f0eccc04f56d3654b66a0dbbc807e9a6d6 /src/imports/controls/StackView.qml
parente50c199cac320696cd78e43f9c79ccedc130881c (diff)
StackView: mirror transitions in right-to-left
Change-Id: I5a8a231be3fed56185066dd9d939d1b898083a68 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/StackView.qml')
-rw-r--r--src/imports/controls/StackView.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/imports/controls/StackView.qml b/src/imports/controls/StackView.qml
index 3aadd37a..f0869307 100644
--- a/src/imports/controls/StackView.qml
+++ b/src/imports/controls/StackView.qml
@@ -43,37 +43,37 @@ T.StackView {
//! [popEnter]
popEnter: Transition {
- XAnimator { from: -root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: (root.mirrored ? -1 : 1) * -root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
}
//! [popEnter]
//! [popExit]
popExit: Transition {
- XAnimator { from: 0; to: root.width; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: 0; to: (root.mirrored ? -1 : 1) * root.width; duration: 400; easing.type: Easing.OutCubic }
}
//! [popExit]
//! [pushEnter]
pushEnter: Transition {
- XAnimator { from: root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: (root.mirrored ? -1 : 1) * root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
}
//! [pushEnter]
//! [pushExit]
pushExit: Transition {
- XAnimator { from: 0; to: -root.width; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: 0; to: (root.mirrored ? -1 : 1) * -root.width; duration: 400; easing.type: Easing.OutCubic }
}
//! [pushExit]
//! [replaceEnter]
replaceEnter: Transition {
- XAnimator { from: root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: (root.mirrored ? -1 : 1) * root.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
}
//! [replaceEnter]
//! [replaceExit]
replaceExit: Transition {
- XAnimator { from: 0; to: -root.width; duration: 400; easing.type: Easing.OutCubic }
+ XAnimator { from: 0; to: (root.mirrored ? -1 : 1) * -root.width; duration: 400; easing.type: Easing.OutCubic }
}
//! [replaceExit]
}