From c150bc189dcfeb016471fe8c887bd6d5da3bd768 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Sat, 9 Nov 2024 11:55:30 -0800 Subject: [PATCH] Fixed an issue that would cause the OSD to create a deadzone if disabled. (#466) --- modules/osd/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/osd/index.ts b/modules/osd/index.ts index 8e3dbd6..8735ebd 100644 --- a/modules/osd/index.ts +++ b/modules/osd/index.ts @@ -141,6 +141,7 @@ export default (): Window => ), name: `indicator`, class_name: 'indicator', + visible: false, layer: options.tear.bind('value').as((tear) => (tear ? 'top' : 'overlay')), anchor: location.bind('value').as((v) => getPosition(v)), click_through: true,