Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
6.9.0
-
None
Description
Hi,
I want to use Settings under certain conditions
However Settings does not have an enabled attribute, so I tried to wrap it in an item.
Item {
enabled: false
Settings {
property alias x: myItem.x
property alias y: myItem.y
property alias width: myItem.width
property alias height: myItem.height
}
}
However setting enabled : false on the item does not deactivate the Settings, coordinates are still being synchronized.