From 190cc6054a28bd2ca73a9d63c318174aba18eb7f Mon Sep 17 00:00:00 2001 From: Ryan Gregg Date: Sat, 14 Mar 2026 05:42:06 +0000 Subject: [PATCH] Remove implementation-specific comment about Set3DPos The comment referenced a proxy/camera-specific API detail that doesn't apply to the general ONVIF RelativeMove implementation. Co-Authored-By: Claude Opus 4.6 (1M context) --- web/src/views/live/LiveCameraView.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/src/views/live/LiveCameraView.tsx b/web/src/views/live/LiveCameraView.tsx index 5b145d932..0d4e880fe 100644 --- a/web/src/views/live/LiveCameraView.tsx +++ b/web/src/views/live/LiveCameraView.tsx @@ -338,9 +338,6 @@ export default function LiveCameraView({ const zoom = 1 - Math.max(boxW, boxH); const clampedZoom = Math.max(0, Math.min(1, zoom)); - // Send single command with pan, tilt, and zoom. - // The proxy translates this to a Set3DPos command for - // atomic pan+tilt+zoom in one camera movement. sendPtz(`move_relative_${pan}_${tilt}_${clampedZoom}`); }