diff --git a/desktop/src/app/image/image.component.ts b/desktop/src/app/image/image.component.ts index 3e7841167..742f6bc7f 100644 --- a/desktop/src/app/image/image.component.ts +++ b/desktop/src/app/image/image.component.ts @@ -1281,7 +1281,7 @@ export class ImageComponent implements AfterViewInit, OnDestroy { this.solver.pixelSize = preference.solver?.pixelSize ?? 0 this.starDetection.type = preference.starDetection?.type ?? this.starDetection.type this.starDetection.minSNR = preference.starDetection?.minSNR ?? this.preference.starDetectionRequest(this.starDetection.type).get().minSNR ?? this.starDetection.minSNR - this.starDetection.maxStars = preference.starDetection?.maxStars ?? this.starDetection.maxStars + this.starDetection.maxStars = preference.starDetection?.maxStars ?? this.preference.starDetectionRequest(this.starDetection.type).get().maxStars ?? this.starDetection.maxStars this.fov.fovs = this.preference.imageFOVs.get() this.fov.fovs.forEach(e => { e.enabled = false; e.computed = undefined }) diff --git a/desktop/src/app/settings/settings.component.html b/desktop/src/app/settings/settings.component.html index e3ba8e467..2e45ca29f 100644 --- a/desktop/src/app/settings/settings.component.html +++ b/desktop/src/app/settings/settings.component.html @@ -88,7 +88,7 @@ [path]="starDetectors.get(starDetectorType)!.executablePath" class="w-full" (pathChange)="starDetectors.get(starDetectorType)!.executablePath = $event; save()" /> -
+
Min SNR
+
+ + + + +