summaryrefslogtreecommitdiffstats
path: root/framework/qml/View.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/View.qml')
-rw-r--r--framework/qml/View.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/framework/qml/View.qml b/framework/qml/View.qml
index 0065c206..e5a4c274 100644
--- a/framework/qml/View.qml
+++ b/framework/qml/View.qml
@@ -32,6 +32,12 @@ FocusScope {
32 property int count: contentItems.length 32 property int count: contentItems.length
33 default property alias contentItems: content.data 33 default property alias contentItems: content.data
34 34
35 //This signal will be emitted once all initial properties have been set and the view is ready to load
36 signal setup()
37 Controls2.StackView.onActivated: {
38 root.setup()
39 }
40
35 onCurrentIndexChanged: showRelevantSplits() 41 onCurrentIndexChanged: showRelevantSplits()
36 Component.onCompleted: showRelevantSplits() 42 Component.onCompleted: showRelevantSplits()
37 43