General
Delays for all signals besides error and warning at position
{
"accessibility.signalOptions.experimental.delays.general": {
"sound": 1000,
"announcement": 3000
} // default
}
Type: object
Default:
{
"sound": 1000,
"announcement": 3000
}
Object Properties:
Key | Type | Default | Range | Description |
---|---|---|---|---|
sound | number | 1000 | 0..unbounded | The delay in milliseconds before a sound is played. |
announcement | number | 3000 | 0..unbounded | The delay in milliseconds before an announcement is made. |
NOTE: Even though the upper limit is unbounded for these values, if the value is very large (like 100_000_000_000_000_000_000), it will act as though the value is 0… not that you would really want to set it this high… bug report?
Description: This lets you customize how long you want the delay or “debounce” to be between when a problem is detected in that context and when the problem sound and problem announcement is played. This setting only has an effect when you have the accessibility.signalOptions.debouncePositionChanges
setting set to true
.