aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/fromBoolValue.qml
blob: 9973352e0a2bcf885f461cbc67c1e539f40c7021 (plain)
1
2
3
4
5
6
7
pragma Strict
import QtQuick 6

Item {
    height: !(parent && parent.visible) ? 100 : 0
    width: !(parent && state) ? 100 : 0
}