From 3fe7d9b90aadcb6114c372e7746ad76e3046016e Mon Sep 17 00:00:00 2001 From: Prabhaav Pillai Date: Sat, 8 Aug 2026 18:26:54 -0400 Subject: [PATCH] Update side labels and instructions for clarity in PipSideCamera --- .../assets/components/tools/pip_sidecam.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/starpilot/system/the_galaxy/assets/components/tools/pip_sidecam.js b/starpilot/system/the_galaxy/assets/components/tools/pip_sidecam.js index 4be5ee364..983c68204 100644 --- a/starpilot/system/the_galaxy/assets/components/tools/pip_sidecam.js +++ b/starpilot/system/the_galaxy/assets/components/tools/pip_sidecam.js @@ -73,8 +73,8 @@ function redraw() { const half = state.zoom / 2; const sides = [ - { key: "left", center: state.leftCenter, color: "#0d6efd", label: "LEFT WINDOW" }, - { key: "right", center: state.rightCenter, color: "#fd7e14", label: "RIGHT WINDOW" }, + { key: "left", center: state.leftCenter, color: "#0d6efd", label: "LEFT OF IMAGE" }, + { key: "right", center: state.rightCenter, color: "#fd7e14", label: "RIGHT OF IMAGE" }, ]; for (const side of sides) { @@ -117,7 +117,7 @@ function redraw() { ctx.font = "bold 15px monospace"; ctx.textAlign = "center"; ctx.fillText( - state.armSide === "left" ? "Click to set LEFT window center" : "Click to set RIGHT window center", + state.armSide === "left" ? "Click to set the LEFT side of the photo (as seen)" : "Click to set the RIGHT side of the photo (as seen)", canvas.width / 2, canvas.height - 18, ); @@ -385,8 +385,8 @@ export function PipSideCamera() {
Setup
@@ -410,11 +410,11 @@ export function PipSideCamera() {
- ${state.armSide ? html`
${state.armSide === "left" ? "⬅ Placing Left Center" : "➡ Placing Right Center"}Click on the window to place its center point
` : ""} + ${state.armSide ? html`
${state.armSide === "left" ? "⬅ Placing Left (as seen)" : "➡ Placing Right (as seen)"}Click on the window to place its center point
` : ""}