Skip to content

Commit 66ea90c

Browse files
committed
Don't fire PtyService.onDidChangeProperty twice
Fixes microsoft#185396
1 parent 2cf2110 commit 66ea90c

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
@@ -270,7 +270,6 @@ export class PtyService extends Disposable implements IPtyService {
270270
options
271271
};
272272
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);
273-
process.onDidChangeProperty(property => this._onDidChangeProperty.fire({ id, property }));
274273
process.onProcessExit(event => {
275274
persistentProcess.dispose();
276275
this._ptys.delete(id);

0 commit comments

Comments
 (0)