Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
QDS 4.6.2
-
None
Description
minimal reproduction repo: https://git.qt.io/mikio_hirai/inlinecomponent2dviewissueqds#
Using inline Components with Positioners mess up the 2D view.
With the code below:
import QtQuick import QtQuick.Controls import InlineComponent Rectangle { id: rectangle width: Constants.width height: Constants.height component MyRect: Rectangle { color: "red" width: 100 height: 100 } Column { spacing: 20 MyRect {} MyRect {} MyRect {} } }
I got this. Notice the entire screen is displayed as if it's in the Positioner: