aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph
diff options
context:
space:
mode:
authorSanthosh Kumar <santhosh.kumar.selvaraj@qt.io>2024-01-19 18:06:58 +0100
committerSanthosh Kumar <santhosh.kumar.selvaraj@qt.io>2024-02-21 14:27:54 +0100
commit8d3ed392bb51dc70c04aa521f1380616a78be7a9 (patch)
treecbc8915d96f43b3e94e562ba1128b0508dc59d59 /examples/quick/scenegraph
parent7b4221002e12716868ff21d462bc427795db4e37 (diff)
Update manual tests and examples for change in default size policy
The size policy of item updated as part of task QTBUG-117597. This patch update existing examples and manual tests that depends on quick layout to embrace size policy change. Task-number: QTBUG-117597 Pick-to: 6.7 Change-Id: I68469a3bba3c4d3e5ed4b6eae0fd765b5206efc0 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
Diffstat (limited to 'examples/quick/scenegraph')
-rw-r--r--examples/quick/scenegraph/rhitextureitem/main.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/quick/scenegraph/rhitextureitem/main.qml b/examples/quick/scenegraph/rhitextureitem/main.qml
index 2c7a4fbe0d..dd664eaa57 100644
--- a/examples/quick/scenegraph/rhitextureitem/main.qml
+++ b/examples/quick/scenegraph/rhitextureitem/main.qml
@@ -172,6 +172,7 @@ Item {
from: 8
to: 2048
value: 128
+ Layout.fillWidth: false
}
}
@@ -197,6 +198,7 @@ Item {
from: 0
to: 1.0
value: 1.0
+ Layout.fillWidth: false
}
}
@@ -234,18 +236,22 @@ Item {
id: rdFormatRGBA8
text: qsTr("8-bit RGBA")
checked: true
+ Layout.fillWidth: false
}
RadioButton {
id: rdFormatFP16
text: qsTr("Half-float RGBA")
+ Layout.fillWidth: false
}
RadioButton {
id: rdFormatFP32
text: qsTr("Float RGBA")
+ Layout.fillWidth: false
}
RadioButton {
id: rdFormatRGB10A2
text: qsTr("10-bit RGB, 2-bit A")
+ Layout.fillWidth: false
}
}
}