diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml index f869c56c0cb..f1f5c5bc668 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml @@ -56,6 +56,8 @@ RowLayout { signal centerButtonClicked signal oppositeEdgeButtonClicked + property alias buttonRow: buttonRow + IconLabel { id: icon diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml index 5601124ed61..6ae989f67e4 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml @@ -152,6 +152,7 @@ Section { anchorBackend.horizontalTarget = currentText } verticalAnchor: false + buttonRow.visible: false } AnchorRow { @@ -164,6 +165,7 @@ Section { anchorBackend.verticalTarget = currentText } verticalAnchor: true + buttonRow.visible: false } }