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.
1 parent a7ad1bf commit 1bb06e8Copy full SHA for 1bb06e8
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