We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89e6f7e + 1bb06e8 commit e612d4dCopy full SHA for e612d4d
src/vs/workbench/contrib/accessibility/browser/accessibleNotificationService.ts
@@ -57,6 +57,10 @@ export class AccessibleNotificationService extends Disposable implements IAccess
57
this._audioCueService.playSound(audioCue.sound.getSound(), true);
58
return;
59
}
60
+ if (audioCueSetting !== 'never') {
61
+ // Never do both sound and alert
62
+ return;
63
+ }
64
const alertSettingValue: NotificationSetting = this._configurationService.getValue(alertSetting);
65
if (this._shouldNotify(alertSettingValue, userGesture)) {
66
this._logService.debug('AccessibleNotificationService alerting: ', alertMessage);
0 commit comments