summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2014-02-24 10:46:53 +0200
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-02-24 10:48:51 +0200
commitae4a9ba56a4204be1c1e5f1ebb8cde5fb5b4441a (patch)
treea479fb441b14fec04f8bf17ed1bfb3f108b023c8
parent9e876c4dc6a25f9f80df0431c9aad9332fb026dc (diff)
Remove unneeded transparency from qmlmultigraph Rectangles
Change-Id: Ibbabc5e69beb0066f49ed4bc3fa3406ce89e1a35 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
-rw-r--r--examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc4
-rw-r--r--examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml3
2 files changed, 1 insertions, 6 deletions
diff --git a/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc b/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
index 4d6da7ab..38c7b783 100644
--- a/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
+++ b/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
@@ -38,9 +38,7 @@
\snippet qmlmultigraph/qml/qmlmultigraph/main.qml 0
- Each graph has a parent \c Rectangle item to provide it with a border. The color of the rectangle
- is set to fully transparent, because otherwise the rectangles would hide the graphs, which are
- always drawn behind all other QML elements.
+ Each graph has a parent \c Rectangle item to provide it with a border.
Note that one of the grid cells is used for buttons in an another \c{GridLayout}.
*/
diff --git a/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml b/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
index aef76823..46ff2067 100644
--- a/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
+++ b/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
@@ -46,7 +46,6 @@ Rectangle {
Layout.fillWidth: true
border.color: surfaceGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Surface3D {
id: surfaceGraph
@@ -123,7 +122,6 @@ Rectangle {
Layout.fillWidth: true
border.color: scatterGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Scatter3D {
id: scatterGraph
@@ -153,7 +151,6 @@ Rectangle {
Layout.fillWidth: true
border.color: barGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Bars3D {
id: barGraph