mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
onDidChangeEmmiter
fires constantly when it shouldn't (#202198)
`onDidChangeEmmiter` fires when it shouldn't
This commit is contained in:
parent
0c882aa770
commit
2d30630ab4
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ export function getLanguageParticipants(): LanguageParticipants {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return !isEqualSet(languages, oldLanguages) || !isEqualSet(oldLanguages, oldAutoInsert);
|
return !isEqualSet(languages, oldLanguages) || !isEqualSet(autoInsert, oldAutoInsert);
|
||||||
}
|
}
|
||||||
update();
|
update();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue