We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30189aa commit 516b605Copy full SHA for 516b605
pty/pty_other.go
@@ -45,7 +45,7 @@ func (p *otherPty) Output() io.ReadWriter {
45
func (p *otherPty) Resize(cols uint16, rows uint16) error {
46
p.mutex.Lock()
47
defer p.mutex.Unlock()
48
- return pty.Setsize(p.tty, &pty.Winsize{
+ return pty.Setsize(p.pty, &pty.Winsize{
49
Rows: rows,
50
Cols: cols,
51
})
0 commit comments