Merge pull request #1566 from Tyriar/1565_charset_fix

Fix charset drawing
This commit is contained in:
Daniel Imms
2018-07-12 08:45:21 -07:00
committed by GitHub
+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) {