Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
6.10
-
None
Description
import QtQuick Item { property color superbColor: txt.color property int value: 0 Text { id: txt text: "blue" color: "blue" } onSuperbColorChanged: { value++; console.log("value is: ", value); } }
prints 1
import QtQuick Item { property alias superbColor: txt.color property int value: 0 Text { id: txt text: "blue" color: "blue" } onSuperbColorChanged: { value++; console.log("value is: ", value); } }
prints nothing