From eb8388038e19d1ca1f944fa2475a791ae1fb2828 Mon Sep 17 00:00:00 2001 From: samfreund Date: Thu, 23 Oct 2025 15:08:31 -0500 Subject: [PATCH 1/2] fix calibration resolution default issue --- .../src/components/cameras/CameraCalibrationCard.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/photon-client/src/components/cameras/CameraCalibrationCard.vue b/photon-client/src/components/cameras/CameraCalibrationCard.vue index 0458e6bc70..b39d40e469 100644 --- a/photon-client/src/components/cameras/CameraCalibrationCard.vue +++ b/photon-client/src/components/cameras/CameraCalibrationCard.vue @@ -79,6 +79,7 @@ const calibrationDivisors = computed(() => }) ); +const uniqueVideoResolutionString = ref(getUniqueVideoResolutionStrings()[0]); const squareSizeIn = ref(1); const markerSizeIn = ref(0.75); const patternWidth = ref(8); @@ -279,13 +280,16 @@ const setSelectedVideoFormat = (format: VideoFormat) => { : 'MrCal failed to load, check journalctl logs for details.' " /> - Date: Thu, 23 Oct 2025 15:48:41 -0500 Subject: [PATCH 2/2] use currently set resolution as default --- .../cameras/CameraCalibrationCard.vue | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/photon-client/src/components/cameras/CameraCalibrationCard.vue b/photon-client/src/components/cameras/CameraCalibrationCard.vue index b39d40e469..c664357f8f 100644 --- a/photon-client/src/components/cameras/CameraCalibrationCard.vue +++ b/photon-client/src/components/cameras/CameraCalibrationCard.vue @@ -1,5 +1,5 @@