Skip to content

Commit

Permalink
SSH: Fix tty resizing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sedwards2009 committed Jun 24, 2024
1 parent 8443f02 commit 7e4f66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/SSHSessionBackend/src/SSHPty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ export class SSHPty implements Pty {
if (this.#state !== PtyState.LIVE) {
return;
}
this.#stream.setWindow(cols, rows, 0, 0);
this.#stream.setWindow(rows, cols, 0, 0);
}

destroy(): void {
Expand Down

0 comments on commit 7e4f66f

Please sign in to comment.