Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
5.3.2
-
None
Description
Similar to QTBUG-42255, this one is about assigning an empty array to an already-empty array.
import QtQuick 2.3 Item { id: root property var something: [] onSomethingChanged: { console.log("Something changed!") } Timer { running: true interval: 200 repeat: true onTriggered: { if (root.something.length !== 0) root.something = [] } } }
Attachments
Issue Links
- relates to
-
QTBUG-42255 Change signal emitted for undefined value
-
- Open
-