aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/ItemWithInnerBehavior.qml
blob: 09983645efad9c3b702a86d846937ea6d0b7662a (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.4

Item {
    id: root

    property bool someValue
    Behavior on someValue {
        ScriptAction { script: { parent.behaviorTriggered = true }}
    }
}