mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-05-14 09:34:32 -04:00
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:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user