import QtQuick 2.4 Item { id: root property real someProperty GlobalMenu { //the existence of this property triggers the bug property bool iDoAbsolutelyNothing Component.onCompleted: { console.log("Changing someValue indirectly"); root.someProperty = 1 console.log("Changing someValue directly"); someValue = 2 } someValue: root.someProperty } }