diff options
author | Jens Bache-Wiig <jens.bache-wiig@digia.com> | 2013-03-02 14:36:57 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-03-02 14:38:00 +0100 |
commit | 0a6b0db8a6fda41bc4b29f726dbf7c228278ce5d (patch) | |
tree | 1f62c93b906444c098c4c28357d3a848407166ce /tests/manual | |
parent | 90d3172a660510e1604fa1ea355f18204d1c87b3 (diff) | |
download | qtquickcontrols-0a6b0db8a6fda41bc4b29f726dbf7c228278ce5d.tar.gz |
Simplify testbench background
Change-Id: If71fa385f95fe89921a1fbcbb27b007d94ba954d
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r-- | tests/manual/testbench/main.qml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml index 1362427e..019f5c40 100644 --- a/tests/manual/testbench/main.qml +++ b/tests/manual/testbench/main.qml @@ -55,6 +55,8 @@ ApplicationWindow { property SpinBox widthControl property SpinBox heightControl + color: "lightgray" + Components{ id: components } SystemPalette { id: syspal } @@ -72,7 +74,7 @@ ApplicationWindow { } CheckBox { id: patternCheckBox - checked: true + checked: false text: "Background" } } @@ -106,14 +108,8 @@ ApplicationWindow { clip: true Layout.horizontalSizePolicy: Layout.Expanding - Rectangle { - anchors.fill: parent - color: "lightgray" - } - Image { anchors.fill: parent - anchors.margins: -1000 source: "../images/checkered.png" fillMode: Image.Tile opacity: patternCheckBox.checked ? 0.12 : 0 |