fix(zoom): hide focus overlay for auto zoom regions

Auto zoom regions use cursor follow, so the blue draggable focus
boundary is hidden and pointer events disabled.
This commit is contained in:
webadderall
2026-04-08 22:00:07 +10:00
parent aeac1099ef
commit 8daa804ff5
@@ -13,7 +13,7 @@ interface OverlayUpdateParams {
export function updateOverlayIndicator(params: OverlayUpdateParams) {
const { overlayEl, indicatorEl, region, focusOverride, baseMask, isPlaying } = params;
if (!region) {
if (!region || region.mode === 'auto') {
indicatorEl.style.display = 'none';
overlayEl.style.pointerEvents = 'none';
return;