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 <noreply@anthropic.com>
This commit is contained in:
Isaac Connor
2026-02-16 15:30:36 -05:00
parent 995b60db80
commit 615055e496

View File

@@ -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') {