Fix misaligned characters(?)

This commit is contained in:
2017-09-09 14:38:03 +02:00
committed by MightyPork
parent d57ed19c42
commit d82c33d774
+1 -1
View File
@@ -242,7 +242,7 @@ class TermScreen {
this.ctx.font = this.getFont();
return {
width: this.ctx.measureText(' ').width,
width: Math.floor(this.ctx.measureText(' ').width),
height: this.window.fontSize
}
}