QML Binging loop detected for property
Solved
General and Desktop
-
I'm getting this:
qrc:/qml/[filepath and QML file]:239:9 QML Details: Binding loop detected for property "blah"
Firstly I've searched for the mentioned property and whilst it is in the QML I can see nothing that would cause this message, what does it actually mean and how to I avoid it?
-
I'm getting this:
qrc:/qml/[filepath and QML file]:239:9 QML Details: Binding loop detected for property "blah"
Firstly I've searched for the mentioned property and whilst it is in the QML I can see nothing that would cause this message, what does it actually mean and how to I avoid it?
@SPlatten said in QML Binging loop detected for property:
what does it actually mean and how to I avoid it?
it means that the setter of "blah" is called multiple times per event loop cycle and each time the value changed.
usually this happens due to circular property binding
the QmlEngine will detect it, that's when you get the "warning", and break the binding.