summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2018-07-03 09:32:04 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2018-07-03 08:17:57 +0000
commited168b2897a3a6ec65a2eb93079a56bf8bb77942 (patch)
tree37e8ce4f8bdc5d4fc43951241c8882bbdd303850
parent185e1c48da2b305131eb0744ee688969d7a39794 (diff)
downloadqtquickcontrols-ed168b2897a3a6ec65a2eb93079a56bf8bb77942.tar.gz
Fix replace transition of vertical slide in the stack view
The replaceTransition property was on the wrong level. Thanks to Markus Weingarten for noticing :) Task-number: QTBUG-69251 Change-Id: I4b9f66721c74a29c265d07a3e70747c69b6522ce Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--src/controls/Private/StackViewSlideDelegate.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/Private/StackViewSlideDelegate.qml b/src/controls/Private/StackViewSlideDelegate.qml
index e64bc38b..dcc14448 100644
--- a/src/controls/Private/StackViewSlideDelegate.qml
+++ b/src/controls/Private/StackViewSlideDelegate.qml
@@ -135,7 +135,7 @@ StackViewDelegate {
to: target.height
duration: 300
}
- property Component replaceTransition: pushTransition
}
+ property Component replaceTransition: pushTransition
}
}