From 395b167b20a61a782dfb51191bd7babcd6a1da46 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Thu, 19 May 2022 08:44:47 -0600 Subject: [PATCH] Show notifications even when Element is focused (#8590) --- src/Notifier.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Notifier.ts b/src/Notifier.ts index 892d5bc19c..60b47bfc89 100644 --- a/src/Notifier.ts +++ b/src/Notifier.ts @@ -95,9 +95,6 @@ export const Notifier = { if (!plaf.supportsNotifications() || !plaf.maySendNotifications()) { return; } - if (global.document.hasFocus()) { - return; - } let msg = this.notificationMessageForEvent(ev); if (!msg) return;