Skip to content

Commit b9e1017

Browse files
committed
set to off by default
1 parent 86a64af commit b9e1017

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/vs/workbench/contrib/audioCues/browser/audioCues.contribution.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,18 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
119119
},
120120
'audioCues.chatRequestSent': {
121121
'description': localize('audioCues.chatRequestSent', "Plays a sound when a chat request is made."),
122-
...audioCueFeatureBase
122+
...audioCueFeatureBase,
123+
default: 'off'
123124
},
124125
'audioCues.chatResponsePending': {
125126
'description': localize('audioCues.chatResponsePending', "Plays a sound on loop while the response is pending."),
126-
...audioCueFeatureBase
127+
...audioCueFeatureBase,
128+
default: 'off'
127129
},
128130
'audioCues.chatResponseReceived': {
129131
'description': localize('audioCues.chatResponseReceived', "Plays a sound on loop while the response has been received."),
130-
...audioCueFeatureBase
132+
...audioCueFeatureBase,
133+
default: 'off'
131134
}
132135
}
133136
});

0 commit comments

Comments
 (0)