Skip to content

Commit c1897a7

Browse files
authored
Merge pull request microsoft#185398 from microsoft/tyriar/185396
Don't fire PtyService.onDidChangeProperty twice
2 parents 42f9bce + 66ea90c commit c1897a7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/vs/platform/terminal/node/ptyService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,6 @@ export class PtyService extends Disposable implements IPtyService {
268268
options
269269
};
270270
const persistentProcess = new PersistentTerminalProcess(id, process, workspaceId, workspaceName, shouldPersist, cols, rows, processLaunchOptions, unicodeVersion, this._reconnectConstants, this._logService, isReviving && typeof shellLaunchConfig.initialText === 'string' ? shellLaunchConfig.initialText : undefined, rawReviveBuffer, shellLaunchConfig.icon, shellLaunchConfig.color, shellLaunchConfig.name, shellLaunchConfig.fixedDimensions);
271-
process.onDidChangeProperty(property => this._onDidChangeProperty.fire({ id, property }));
272271
process.onProcessExit(event => {
273272
persistentProcess.dispose();
274273
this._ptys.delete(id);

0 commit comments

Comments
 (0)