diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2016-01-11 14:11:40 +0100 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2016-01-11 14:11:40 +0100 |
commit | 309375f55c05a0bef3f47a0f2cdd138c41284bea (patch) | |
tree | bbaa5f1910a4b15095ec4df3c0adc4f293c5672b | |
parent | 3e02b15bee53a2e215bb312fb0e7c77a03828cd2 (diff) |
Reordered scatterplot components and removed explicit z-order.
-rw-r--r-- | main_view.qml | 10 |
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 } } |