jfjoch_viewer: Show spots is off by default

This commit is contained in:
2025-11-24 11:58:47 +01:00
parent 04c1e98801
commit 57eeb29976
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ JFJochViewerSidePanel::JFJochViewerSidePanel(QWidget *parent) : QWidget(parent)
layout->addWidget(new TitleLabel("Image features", this));
auto spotToggleCheckBox = new QCheckBox("Show spots", this);
spotToggleCheckBox->setCheckState(Qt::CheckState::Checked);
spotToggleCheckBox->setCheckState(Qt::CheckState::Unchecked);
connect(spotToggleCheckBox, &QCheckBox::toggled, this, &JFJochViewerSidePanel::spotsToggled);
+1 -1
View File
@@ -38,7 +38,7 @@ private:
RingMode ring_mode = RingMode::Manual;
bool show_spots = true;
bool show_spots = false;
bool show_predictions = false;
bool highlight_ice_rings = true;