diff options
author | Jan Arve Saether <jan-arve.saether@digia.com> | 2013-02-28 13:00:16 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-03-06 16:53:44 +0100 |
commit | 9c59d474479d21ba08ac5c2ef49b77557493c3fb (patch) | |
tree | cdabeba5d4db8bac26b10438ef0828e7a71b946a /tests/manual/testbench | |
parent | 795fa39d8e86f3ae6f053611ebefda0a880b65ae (diff) | |
download | qtquickcontrols-9c59d474479d21ba08ac5c2ef49b77557493c3fb.tar.gz |
Change the layout engine of RowLayout and ColumnLayout.
It now uses the gridlayoutengine from graphicsview, which
also gives us a well tested grid layout engine almost for
free.
Change-Id: I939ae4d2b321c8079935ff3374e8e5d10d02384b
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/manual/testbench')
-rw-r--r-- | tests/manual/testbench/content/PropertyLayouts.qml | 1 | ||||
-rw-r--r-- | tests/manual/testbench/main.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/manual/testbench/content/PropertyLayouts.qml b/tests/manual/testbench/content/PropertyLayouts.qml index 2f0d85f0..88d64acf 100644 --- a/tests/manual/testbench/content/PropertyLayouts.qml +++ b/tests/manual/testbench/content/PropertyLayouts.qml @@ -40,6 +40,7 @@ import QtQuick 2.0 import QtQuick.Controls 1.0 +import QtQuick.Layouts 1.0 QtObject { property Component boolLayout: CheckBox { diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml index 019f5c40..a5f5f693 100644 --- a/tests/manual/testbench/main.qml +++ b/tests/manual/testbench/main.qml @@ -40,6 +40,7 @@ import QtQuick 2.0 import QtQuick.Controls 1.0 +import QtQuick.Layouts 1.0 import "content" ApplicationWindow { |