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>pull/4639/head^2
parent
995b60db80
commit
615055e496
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue