You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description': localize('accessibility.signalOptions.delays.warningAtPosition.announcement',"The delay in milliseconds before an announcement is made when there's a warning at the position."),
216
218
'type': 'number',
217
219
'minimum': 0,
220
+
'default': 3000
218
221
},
219
222
'sound': {
220
223
'description': localize('accessibility.signalOptions.delays.warningAtPosition.sound',"The delay in milliseconds before a sound is played when there's a warning at the position."),
'description': localize('accessibility.signalOptions.delays.errorAtPosition.announcement',"The delay in milliseconds before an announcement is made when there's an error at the position."),
232
236
'type': 'number',
233
237
'minimum': 0,
238
+
'default': 3000
234
239
},
235
240
'sound': {
236
241
'description': localize('accessibility.signalOptions.delays.errorAtPosition.sound',"The delay in milliseconds before a sound is played when there's an error at the position."),
237
242
'type': 'number',
238
243
'minimum': 0,
244
+
'default': 1000
239
245
}
240
246
},
241
247
},
248
+
},
249
+
'default': {
250
+
'general': {
251
+
'announcement': 3000,
252
+
'sound': 400
253
+
},
254
+
'warningAtPosition': {
255
+
'announcement': 3000,
256
+
'sound': 1000
257
+
},
258
+
'errorAtPosition': {
259
+
'announcement': 3000,
260
+
'sound': 1000
261
+
}
242
262
}
243
-
}
263
+
},
244
264
},
245
-
default: {
265
+
'default': {
246
266
'volume': 70,
247
267
'debouncePositionChanges': false,
248
268
'delays': {
@@ -712,7 +732,7 @@ export function registerAccessibilityConfiguration() {
0 commit comments