From 7bca4cdecd483b16396986e420d776951ce7e2e4 Mon Sep 17 00:00:00 2001 From: Jacob Turner Date: Tue, 24 Aug 2021 11:58:13 -0600 Subject: [PATCH] Allow ligatures in WebGL --- lib/components/term.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/term.tsx b/lib/components/term.tsx index 9febd372032a..10a51164a282 100644 --- a/lib/components/term.tsx +++ b/lib/components/term.tsx @@ -176,7 +176,7 @@ export default class Term extends React.PureComponent { if (useWebGL) { this.term.loadAddon(new WebglAddon()); } - if (props.disableLigatures !== true && !useWebGL) { + if (props.disableLigatures !== true) { this.term.loadAddon(new LigaturesAddon()); } this.term.loadAddon(new Unicode11Addon());