Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
QDS 4.2
-
None
Description
When having code like this
Rectangle { id: rectangle width: Constants.width ...
adding a new property by writing in the code editor in between id and width will make width a local property...
To reproduce start typing
Rectangle {
id: rectangle
property int
width: Constants.width
...
stop shortly and then finish the property
Rectangle {
id: rectangle
property int test: 123
width: Constants.width
...
test will become a local property, but width will still be a local property even after deselecting and selecting the item.