From b78b0dad97f079cbbf90225a9edbb7810f133cfb Mon Sep 17 00:00:00 2001 From: Sam Freund Date: Tue, 19 May 2026 23:43:06 -0400 Subject: [PATCH] Fix setting stream res (#2500) --- photon-client/src/components/dashboard/tabs/InputTab.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/photon-client/src/components/dashboard/tabs/InputTab.vue b/photon-client/src/components/dashboard/tabs/InputTab.vue index 097607001..7b52f9808 100644 --- a/photon-client/src/components/dashboard/tabs/InputTab.vue +++ b/photon-client/src/components/dashboard/tabs/InputTab.vue @@ -61,10 +61,9 @@ const currentStreamResolutionIndex = computed({ return stored - skipped; }, set: (index) => { - useCameraSettingsStore().changeCurrentPipelineSetting( - { streamingFrameDivisor: index + getNumberOfSkippedDivisors() }, - false - ); + useCameraSettingsStore().changeCurrentPipelineSetting({ + streamingFrameDivisor: index + getNumberOfSkippedDivisors() + }); } }); const { mdAndDown } = useDisplay();