mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 15:54:22 +02:00
Fixed PTY/TTY console width
https://github.com/PowerShell/Win32-OpenSSH/issues/578
This commit is contained in:
parent
8addc04e87
commit
be750af114
@ -389,7 +389,7 @@ w32_ioctl(int d, int request, ...)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
wsize->ws_col = c_info.srWindow.Right - c_info.srWindow.Left + 1;
|
wsize->ws_col = c_info.dwSize.X;
|
||||||
wsize->ws_row = c_info.srWindow.Bottom - c_info.srWindow.Top + 1;
|
wsize->ws_row = c_info.srWindow.Bottom - c_info.srWindow.Top + 1;
|
||||||
wsize->ws_xpixel = 640;
|
wsize->ws_xpixel = 640;
|
||||||
wsize->ws_ypixel = 480;
|
wsize->ws_ypixel = 480;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user