Apply font size and family in xterm

Mostly fixes #21
This commit is contained in:
Søren L. Hansen 2021-07-04 13:37:24 -07:00
parent 603c65063b
commit f157dbe9d3

View File

@ -78,6 +78,10 @@ export class Xterm {
Object.keys(value).forEach((key) => { Object.keys(value).forEach((key) => {
if (key == "EnableWebGL" && key) { if (key == "EnableWebGL" && key) {
this.term.loadAddon(new WebglAddon()); this.term.loadAddon(new WebglAddon());
} else if (key == "font-size") {
this.term.setOption("fontSize", value[key])
} else if (key == "font-family") {
this.term.setOption("fontFamily", value[key])
} }
}); });
}; };