提交 553c8af1 编写于 作者: D Daniel Imms

Remove temporary Windows terminal column cap

Fixes #24630
Related #19665
上级 6c9ead03
......@@ -153,10 +153,6 @@ export class TerminalInstance implements ITerminalInstance {
const font = this._configHelper.getFont();
this._cols = Math.floor(dimension.width / font.charWidth);
this._rows = Math.floor(dimension.height / font.charHeight);
// Caps cols at 159 on Windows due to #19665 (hopefully temporary)
if (platform.isWindows && this._cols >= 160) {
this._cols = 159;
}
return dimension.width;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册