From e475683b18039cbb76437d5d3acb2e7862afae06 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 23 Jun 2022 12:50:47 -0600 Subject: [PATCH] Don't show any designator when active --- frigate/object_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index 45921dc52..440c8a8ad 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -399,7 +399,7 @@ class CameraState: box[2], box[3], obj["label"], - f"{'(Stat)' if obj['stationary'] else '(Actv)'} {obj['score']:.0%} {int(obj['area'])}", + f"{'(Stat)' if obj['stationary'] else ''} {obj['score']:.0%} {int(obj['area'])}", thickness=thickness, color=color, )