summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter/qml/qmlscatter/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlscatter/qml/qmlscatter/main.qml')
-rw-r--r--examples/qmlscatter/qml/qmlscatter/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qmlscatter/qml/qmlscatter/main.qml b/examples/qmlscatter/qml/qmlscatter/main.qml
index 7893ae56..e4f95d09 100644
--- a/examples/qmlscatter/qml/qmlscatter/main.qml
+++ b/examples/qmlscatter/qml/qmlscatter/main.qml
@@ -109,12 +109,12 @@ Item {
text: "Use Smooth Dots"
anchors.left: shadowToggle.right
onClicked: {
- if (scatterGraph.objectSmoothingEnabled === false) {
+ if (scatterSeries.meshSmooth === false) {
text = "Use Flat Dots";
- scatterGraph.objectSmoothingEnabled = true;
+ scatterSeries.meshSmooth = true;
} else {
text = "Use Smooth Dots"
- scatterGraph.objectSmoothingEnabled = false;
+ scatterSeries.meshSmooth = false;
}
}
}