Remove birdseye toggle (will be added in separate PR)

This commit is contained in:
Nick Mowen 2022-04-11 06:13:06 -06:00
parent 8267b8a733
commit 37ab7f6285
2 changed files with 3 additions and 2 deletions

View File

@ -311,6 +311,7 @@ class BirdsEyeFrameManager:
return True return True
def update(self, camera, object_count, motion_count, frame_time, frame) -> bool: def update(self, camera, object_count, motion_count, frame_time, frame) -> bool:
# update the last active frame for the camera # update the last active frame for the camera
self.cameras[camera]["current_frame"] = frame_time self.cameras[camera]["current_frame"] = frame_time
if self.camera_active(object_count, motion_count): if self.camera_active(object_count, motion_count):

View File

@ -20,7 +20,7 @@ export const handlers = [
detect: { width: 1280, height: 720 }, detect: { width: 1280, height: 720 },
snapshots: {}, snapshots: {},
live: { height: 720 }, live: { height: 720 },
ui: { dashboard: true, order: 0, birdseye: true }, ui: { dashboard: true, order: 0 },
}, },
side: { side: {
name: 'side', name: 'side',
@ -29,7 +29,7 @@ export const handlers = [
detect: { width: 1280, height: 720 }, detect: { width: 1280, height: 720 },
snapshots: {}, snapshots: {},
live: { height: 720 }, live: { height: 720 },
ui: { dashboard: true, order: 1, birdseye: true }, ui: { dashboard: true, order: 1 },
}, },
}, },
}) })