-
Bug
-
Resolution: Cannot Reproduce
-
P2: Important
-
QSR 2.0, QSR 2.1
-
None
The following code does not work in Qt Quick runtime:
SafeImage {
id: turnRight
source: "qrc:/images/IconTurnRightOn.png"
x: 900
y: 280
height: 48
width: 48
opacity: 0.0
property bool flashing2: false
Timer {
interval: 500
running: cluster.rightTelltale
repeat: true
onTriggered: {
turnRight.flashing2 = !turnRight.flashing2
if (cluster.rightTelltale && turnRight.flashing2) {
turnRight.opacity = 1.0
} else {
turnRight.opacity = 0.0
}
}
}
}