mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
Fix setting stream res (#2500)
This commit is contained in:
@@ -61,10 +61,9 @@ const currentStreamResolutionIndex = computed<number>({
|
||||
return stored - skipped;
|
||||
},
|
||||
set: (index) => {
|
||||
useCameraSettingsStore().changeCurrentPipelineSetting(
|
||||
{ streamingFrameDivisor: index + getNumberOfSkippedDivisors() },
|
||||
false
|
||||
);
|
||||
useCameraSettingsStore().changeCurrentPipelineSetting({
|
||||
streamingFrameDivisor: index + getNumberOfSkippedDivisors()
|
||||
});
|
||||
}
|
||||
});
|
||||
const { mdAndDown } = useDisplay();
|
||||
|
||||
Reference in New Issue
Block a user