diff options
| author | Santhosh Kumar <santhosh.kumar.selvaraj@qt.io> | 2024-01-19 18:06:58 +0100 |
|---|---|---|
| committer | Santhosh Kumar <santhosh.kumar.selvaraj@qt.io> | 2024-02-21 14:27:54 +0100 |
| commit | 8d3ed392bb51dc70c04aa521f1380616a78be7a9 (patch) | |
| tree | cbc8915d96f43b3e94e562ba1128b0508dc59d59 /examples/quickcontrols/chattutorial/chapter3 | |
| parent | 7b4221002e12716868ff21d462bc427795db4e37 (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/quickcontrols/chattutorial/chapter3')
| -rw-r--r-- | examples/quickcontrols/chattutorial/chapter3/ConversationPage.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/quickcontrols/chattutorial/chapter3/ConversationPage.qml b/examples/quickcontrols/chattutorial/chapter3/ConversationPage.qml index 8f3a64485c..9a4f1861bd 100644 --- a/examples/quickcontrols/chattutorial/chapter3/ConversationPage.qml +++ b/examples/quickcontrols/chattutorial/chapter3/ConversationPage.qml @@ -77,6 +77,7 @@ Page { Pane { id: pane Layout.fillWidth: true + Layout.fillHeight: false RowLayout { width: parent.width @@ -92,6 +93,7 @@ Page { id: sendButton text: qsTr("Send") enabled: messageField.length > 0 + Layout.fillWidth: false } } } |
