mirror of
https://github.com/voideditor/void
synced 2026-05-23 09:28:23 +00:00
Local Changes
This commit is contained in:
parent
4358b9e384
commit
31cde552a0
1 changed files with 2 additions and 2 deletions
|
|
@ -170,7 +170,7 @@ export class TerminalProcess extends Disposable implements ITerminalChildProcess
|
|||
cols,
|
||||
rows,
|
||||
useConpty,
|
||||
useConptyDll,
|
||||
...(useConptyDll ? { useConptyDll } : {}) as IPtyForkOptions,
|
||||
// This option will force conpty to not redraw the whole viewport on launch
|
||||
conptyInheritCursor: useConpty && !!shellLaunchConfig.initialText
|
||||
};
|
||||
|
|
@ -392,7 +392,7 @@ export class TerminalProcess extends Disposable implements ITerminalChildProcess
|
|||
return;
|
||||
}
|
||||
// Don't throttle when using conpty.dll as it seems to have been fixed in later versions
|
||||
if (this._ptyOptions.useConptyDll) {
|
||||
if ((this._ptyOptions as any).useConptyDll) {
|
||||
return;
|
||||
}
|
||||
// Use a loop to ensure multiple calls in a single interval space out
|
||||
|
|
|
|||
Loading…
Reference in a new issue