mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-18 18:03:19 +01:00
Fixes editor text property signal bug (#211940)
This commit is contained in:
committed by
GitHub
parent
21a4192024
commit
3466a88aa2
+1
-1
@@ -103,7 +103,7 @@ export class EditorTextPropertySignalsContribution extends Disposable implements
|
||||
}
|
||||
|
||||
for (const modality of ['sound', 'announcement'] as AccessibilityModality[]) {
|
||||
if (this._accessibilitySignalService.getEnabledState(signal, false, modality)) {
|
||||
if (this._accessibilitySignalService.getEnabledState(signal, false, modality).value) {
|
||||
const delay = this._getDelay(signal, modality) + (didType.get() ? 1000 : 0);
|
||||
|
||||
timeouts.add(disposableTimeout(() => {
|
||||
|
||||
Reference in New Issue
Block a user