Tweak names, make shellLaunchConfig readonly again

This commit is contained in:
Daniel Imms
2019-07-24 14:29:24 -07:00
parent 11e63ac0a6
commit 0927be89c8
7 changed files with 15 additions and 16 deletions

View File

@@ -326,7 +326,7 @@ export class MainThreadTerminalService implements MainThreadTerminalServiceShape
public $sendResolvedLaunchConfig(terminalId: number, shellLaunchConfig: IShellLaunchConfig): void {
const instance = this._terminalService.getInstanceFromId(terminalId);
if (instance) {
this._getTerminalProcess(terminalId).then(e => e.emitOverrideShellLaunchConfig(shellLaunchConfig));
this._getTerminalProcess(terminalId).then(e => e.emitResolvedShellLaunchConfig(shellLaunchConfig));
}
}