From e3e8ee036293167bbdc32c53c1597f111df4634a Mon Sep 17 00:00:00 2001 From: David Edler Date: Fri, 30 Sep 2022 11:53:05 +0200 Subject: [PATCH] disable flashWindow on linux, it doesn't work and causes notifications without context #2262 (#2263) --- src/common/config/defaultPreferences.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config/defaultPreferences.ts b/src/common/config/defaultPreferences.ts index c8bf6cbb..2c84ca7a 100644 --- a/src/common/config/defaultPreferences.ts +++ b/src/common/config/defaultPreferences.ts @@ -29,7 +29,7 @@ const defaultPreferences: ConfigV3 = { trayIconTheme: 'use_system', minimizeToTray: process.platform !== 'linux', notifications: { - flashWindow: 2, + flashWindow: process.platform === 'linux' ? 0 : 2, bounceIcon: true, bounceIconType: 'informational', },