import QtQuick 2.0 // The bug shows up at arbitrary nested depths. // As the top-most item is added and removed from the render list, Rectangle { width: 200 height: 200 color: "black" Rectangle { anchors.fill: parent color: "yellow" Rectangle { anchors.fill: parent color: "blue" Rectangle { anchors.fill: parent color: "green" TextEdit { anchors.fill: parent color: "yellow" text: "Static Text" } Rectangle { id: lowerhalf y: 100 height: 100 width: 200 color: "red" TextEdit { anchors.fill: parent text: "Blinking Text" } Timer { interval: 1000 repeat: true running: true onTriggered: { lowerhalf.visible = !lowerhalf.visible } } } } } } }