Details
-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
QDS 4.0
-
None
Description
import QtQuick 2.15 import QtQuick.Controls 2.15 Item { width: 1920 height: 1080 Rectangle { id: rectangle color: "#ffffff" anchors.fill: parent } Rectangle { id: dragger x: 142 y: 262 width: 200 height: 200 color: "#b32929" DragHandler { id: mydragger } } DropArea { id: dragTarget width: 64 height: 64 Rectangle { id: dropRectangle anchors.fill: parent color: "green" } } }
Causes an error in the code model of QtDS, even though it works in the runtime.