You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`model` is special - it holds delegate specific model data piece,
and at the same time it's used in views to hold ListModel instance.
At the time of the lookup, we can't say it's delegate or a property.
For instance:
```
delegate: Item { property var row: model; }
```
is been (correctly - by definition of lookup_parent) resolved as parent.model (where parent = ListView) and
model ends up being ListView.model instance, instead of model row.
Although it could be possible to figure out after #61.
See also PR #207, issue #501 and `model_row.qml` for details.
Presumably by adding some special property type, e.g.
Remove all name-hacks
The text was updated successfully, but these errors were encountered: