Fix charset drawing

Fixes #1565
This commit is contained in:
Daniel Imms
2018-07-12 08:27:57 -07:00
parent 0545cfa121
commit 61fc4ca8a6
+1 -1
View File
@@ -359,9 +359,9 @@ export class InputHandler extends Disposable implements IInputHandler {
chWidth = wcwidth(code);
// get charset replacement character
// FIXME: Should code be replaced as well?
if (charset) {
char = charset[char] || char;
code = char.charCodeAt(0);
}
if (screenReaderMode) {