'Draw attention to this window' option is now defaulted to 'false'

This commit is contained in:
Scott Nonnenberg 2023-01-31 18:03:44 -08:00 committed by GitHub
parent 8ac4786040
commit b062409bb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -325,7 +325,7 @@ export function createIPCEvents(
setNotificationSetting: (value: 'message' | 'name' | 'count' | 'off') =>
window.storage.put('notification-setting', value),
getNotificationDrawAttention: () =>
window.storage.get('notification-draw-attention', true),
window.storage.get('notification-draw-attention', false),
setNotificationDrawAttention: value =>
window.storage.put('notification-draw-attention', value),
getAudioNotification: () => window.storage.get('audio-notification'),