Details
Description
Consider:
import QtQml import Test BindablePoint { id: root property int changes: 0 property alias aa: root.point.x onAaChanged: ++changes }
If the "point" property is only bindable (has no change signal), then onAaChanged does not trigger when you update point.