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

Item {
    id: root

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