aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.cpp1
-rw-r--r--main_view.qml3
2 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 924cb81..a9a5a86 100644
--- a/main.cpp
+++ b/main.cpp
@@ -240,6 +240,7 @@ int main(int argc, char **argv)
m->cpPlot->setAutoScale(false);
m->rpPlot->setAutoScale(false);
+ m->rpPlot->setGlyphSize(3.0f);
m->cpPlot->setColorData(labels(cpIndices), false);
// This sets the initial CP configuration, triggering all the necessary
diff --git a/main_view.qml b/main_view.qml
index 56e3f59..d9946b8 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -71,7 +71,6 @@ ApplicationWindow {
x: parent.x
y: parent.y
anchors.fill: parent
- visible: false
}
Scatterplot {
@@ -263,7 +262,7 @@ ApplicationWindow {
GroupBox {
title: "Regular points"
- checked: false
+ checked: true
checkable: true
__checkbox.onClicked: {
rpPlot.visible = this.checked;