Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
5.12.12, 6.4.2
-
None
Description
import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.12 Window { width: 200 height: 100 visible: true title: qsTr("Test") readonly property int bw: 20 Rectangle { anchors.fill: parent color: "transparent" border { width: bw color: "yellow" } } Column { anchors.fill: parent padding: bw Label { text: "TEST" anchors.left: parent.left // CULPRIT } } }