From 8d3ed392bb51dc70c04aa521f1380616a78be7a9 Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Date: Fri, 19 Jan 2024 18:06:58 +0100 Subject: Update manual tests and examples for change in default size policy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- examples/quick/scenegraph/rhitextureitem/main.qml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'examples/quick/scenegraph') 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 } } } -- cgit v1.2.3