Merge pull request #1613 from shroudedcode/support-not-italic

Add support for the "Not italic" escape code
This commit is contained in:
Daniel Imms
2018-08-14 11:33:39 -07:00
committed by GitHub
+3
View File
@@ -1631,6 +1631,9 @@ export class InputHandler extends Disposable implements IInputHandler {
// not bold nor faint
flags &= ~FLAGS.BOLD;
flags &= ~FLAGS.DIM;
} else if (p === 23) {
// not italic
flags &= ~FLAGS.ITALIC;
} else if (p === 24) {
// not underlined
flags &= ~FLAGS.UNDERLINE;