From 615055e496bf37b5e94fbbdad00a547258f54e2d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 16 Feb 2026 15:30:36 -0500 Subject: [PATCH] fix: default analysis overlay to off in zms streams MonitorStream.js initialized analyse_frames = true, causing zone overlays to always appear on stream start regardless of view settings. Change default to false so watch view starts clean. The zone editor view already explicitly enables analysis after monitor creation. Co-Authored-By: Claude Opus 4.6 --- web/js/MonitorStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/MonitorStream.js b/web/js/MonitorStream.js index bbac8f552..7f1061b9e 100644 --- a/web/js/MonitorStream.js +++ b/web/js/MonitorStream.js @@ -1621,7 +1621,7 @@ function MonitorStream(monitorData) { }; }; } - this.analyse_frames = true; + this.analyse_frames = false; this.show_analyse_frames = function(toggle) { const streamImage = this.getElement(); if (streamImage.nodeName == 'IMG') {