Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
even more descriptive:
Browse files Browse the repository at this point in the history
IsmaelMartinez committed Jan 23, 2024

Unverified

This user has not yet uploaded their public signing key.
1 parent 1ff24ed commit 434d55e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/menus/application.js
Original file line number Diff line number Diff line change
@@ -78,31 +78,31 @@ function getNotificationsMenu(Menus) {
label: 'Notifications',
submenu: [
{
label: 'Disable All',
label: 'Disable All Notifications',
type: 'checkbox',
checked: Menus.config.disableNotifications,
click: () => Menus.config.disableNotifications = !Menus.config.disableNotifications
},
{
label: 'Disable Meeting',
label: 'Disable Meeting Notifications',
type: 'checkbox',
checked: Menus.config.disableMeetingNotifications,
click: () => Menus.config.disableMeetingNotifications = !Menus.config.disableMeetingNotifications
},
{
label: 'Disable Sound',
label: 'Disable Notifications Sound',
type: 'checkbox',
checked: Menus.config.disableNotificationSound,
click: () => Menus.config.disableNotificationSound = !Menus.config.disableNotificationSound
},
{
label: 'Disable Sound when not available (e.g: busy, in a call)',
label: 'Disable Sound when Not Available (e.g: busy, in a call)',
type: 'checkbox',
checked: Menus.config.disableNotificationSoundIfNotAvailable,
click: () => Menus.config.disableNotificationSoundIfNotAvailable = !Menus.config.disableNotificationSoundIfNotAvailable
},
{
label: 'Disables Window flash on new notifications',
label: 'Disables Window Flash on New Notifications',
type: 'checkbox',
checked: Menus.config.disableNotificationWindowFlash,
click: () => Menus.config.disableNotificationWindowFlash = !Menus.config.disableNotificationWindowFlash

0 comments on commit 434d55e

Please sign in to comment.