Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
Qt for MCUs 2.10, Qt for MCUs 2.9.1
-
95de5525
-
Auto&Medical S13
Description
Adding a property signal handler to an aliased property causes runtime error:
import QtQuick Rectangle { id: root Text {id: rotatingText; color: "blue"} property alias superbColor: rotatingText.color onSuperbColorChanged: { console.log("test") } }
The app outputs:
Qt for MCUs error: Core:PropertyBinding_PropertyNotSet:162, line: 410, params: 0, 0, 0. See https://doc.qt.io/QtForMCUs/qul-errorcode-h.html#QulError-enum for more information.