summaryrefslogtreecommitdiffstats
path: root/tests/manual/testbench/content/PropertyLayouts.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/testbench/content/PropertyLayouts.qml')
-rw-r--r--tests/manual/testbench/content/PropertyLayouts.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/manual/testbench/content/PropertyLayouts.qml b/tests/manual/testbench/content/PropertyLayouts.qml
index 7a1059782..c191dcd01 100644
--- a/tests/manual/testbench/content/PropertyLayouts.qml
+++ b/tests/manual/testbench/content/PropertyLayouts.qml
@@ -55,7 +55,7 @@ QtObject {
property Component intLayout: RowLayout {
spacing: 4
- Text {
+ Label {
text: name + ":"
Layout.minimumWidth: 100
}
@@ -75,7 +75,7 @@ QtObject {
property Component realLayout: RowLayout {
spacing: 4
- Text {
+ Label {
text: name + ":"
Layout.minimumWidth: 100
}
@@ -106,7 +106,7 @@ QtObject {
property Component stringLayout: RowLayout {
spacing: 4
- Text {
+ Label {
text: name + ":"
width: 100
}
@@ -125,12 +125,12 @@ QtObject {
property Component readonlyLayout: RowLayout {
height: 20
- Text {
+ Label {
id: text
height: 20
text: name + ":"
}
- Text {
+ Label {
height: 20
anchors.right: parent.right
Layout.horizontalSizePolicy: Layout.Expanding
@@ -142,7 +142,7 @@ QtObject {
id: enumLayout
spacing: 4
height: 20
- Text {
+ Label {
text: name + ":"
Layout.minimumWidth: 100
}