disable flashWindow on linux, it doesn't work and causes notifications without context #2262 (#2263)

This commit is contained in:
David Edler 2022-09-30 11:53:05 +02:00 committed by GitHub
parent 7c3b68fb68
commit e3e8ee0362
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ const defaultPreferences: ConfigV3 = {
trayIconTheme: 'use_system', trayIconTheme: 'use_system',
minimizeToTray: process.platform !== 'linux', minimizeToTray: process.platform !== 'linux',
notifications: { notifications: {
flashWindow: 2, flashWindow: process.platform === 'linux' ? 0 : 2,
bounceIcon: true, bounceIcon: true,
bounceIconType: 'informational', bounceIconType: 'informational',
}, },