summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@digia.com>2013-05-13 17:20:15 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-16 07:57:45 +0200
commitec2d1831014e323c1f7750833dcc785d18f46456 (patch)
tree8e571ceecbac6ff9b57f0e2f1feee99645cb96f1 /examples
parentde0a87bf28b3915bd297f59693eef98c0eef235f (diff)
downloadqtquickcontrols-ec2d1831014e323c1f7750833dcc785d18f46456.tar.gz
Do not set the window max constraints in basiclayouts example.
They are strictly not needed... As a consequence of this, do not limit the size of the TextArea Change-Id: I3c152e7e8f749d7b5b2a0b9887664a11fb7d3b04 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/controls/basiclayouts/main.qml3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/quick/controls/basiclayouts/main.qml b/examples/quick/controls/basiclayouts/main.qml
index 6ce18fef..74ccb491 100644
--- a/examples/quick/controls/basiclayouts/main.qml
+++ b/examples/quick/controls/basiclayouts/main.qml
@@ -53,8 +53,6 @@ ApplicationWindow {
height: mainLayout.implicitHeight + 2 * margin
minimumWidth: mainLayout.Layout.minimumWidth + 2 * margin
minimumHeight: mainLayout.Layout.minimumHeight + 2 * margin
- maximumWidth: mainLayout.Layout.maximumWidth + 2 * margin
- maximumHeight: mainLayout.Layout.maximumHeight + 2 * margin
ColumnLayout {
id: mainLayout
@@ -114,7 +112,6 @@ ApplicationWindow {
id: t3
text: "This fills the whole cell"
Layout.minimumHeight: 30
- Layout.maximumHeight: 300
Layout.fillHeight: true
Layout.fillWidth: true
}