aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/popContextAfterRet.qml
blob: cde9e054d334a52b13c06aebbe0e9c4f9934613f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pragma Strict
import QtQml

QtObject {
    id: root
    property int stackViewDepth: 0
    onStackViewDepthChanged:  {
        if (stackViewDepth > 1) {
            root.objectName = "backgroundBlur"
            return true
        }
        root.objectName = "backgroundImage"
        return false
    }
}