aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-11 14:11:40 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-11 14:11:40 +0100
commit309375f55c05a0bef3f47a0f2cdd138c41284bea (patch)
treebbaa5f1910a4b15095ec4df3c0adc4f293c5672b /main_view.qml
parent3e02b15bee53a2e215bb312fb0e7c77a03828cd2 (diff)
Reordered scatterplot components and removed explicit z-order.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml10
1 files changed, 4 insertions, 6 deletions
diff --git a/main_view.qml b/main_view.qml
index 910c585..d109465 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -81,20 +81,18 @@ ApplicationWindow {
border.color: "#cccccc"
Scatterplot {
- id: subsamplePlot
- objectName: "subsamplePlot"
+ id: plot
+ objectName: "plot"
x: parent.x
y: parent.y
- z: 1
anchors.fill: parent
}
Scatterplot {
- id: plot
- objectName: "plot"
+ id: subsamplePlot
+ objectName: "subsamplePlot"
x: parent.x
y: parent.y
- z: 0
anchors.fill: parent
}
}