change xterm size to 120x36 to match that of pty

This commit is contained in:
Zhi Wang 2022-01-18 18:42:27 -05:00
parent ebf8a30e4d
commit dee8cbb034
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ function createTerminal(path) {
});
term.open(document.getElementById('terminal_view'));
term.resize(124, 37);
term.resize(120, 36);
const weblinksAddon = new WebLinksAddon.WebLinksAddon();
term.loadAddon(weblinksAddon);

View File

@ -33,7 +33,7 @@ function createReplayTerminal() {
});
term.open(document.getElementById('terminal_view'));
term.resize(124, 37);
term.resize(120, 36);
const weblinksAddon = new WebLinksAddon.WebLinksAddon();
term.loadAddon(weblinksAddon);