Adopt ext host to use configuration tree data

This commit is contained in:
Sandeep Somavarapu
2017-06-16 07:49:51 +02:00
parent 73015a5e05
commit 81b98b8870
5 changed files with 85 additions and 80 deletions

View File

@@ -26,7 +26,7 @@ export class MainThreadConfiguration extends MainThreadConfigurationShape {
const proxy = threadService.get(ExtHostContext.ExtHostConfiguration);
this._toDispose = configurationService.onDidUpdateConfiguration(() => {
proxy.$acceptConfigurationChanged(configurationService.values());
proxy.$acceptConfigurationChanged(configurationService.getConfigurationData());
});
}