mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Disable ligatures when using webgl renderer
This commit is contained in:
parent
54bdc9ba5d
commit
1e64e72797
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ export default class Term extends React.PureComponent<TermProps> {
|
|||
if (useWebGL) {
|
||||
this.term.loadAddon(new WebglAddon());
|
||||
}
|
||||
if (props.disableLigatures !== true) {
|
||||
if (props.disableLigatures !== true && !useWebGL) {
|
||||
this.term.loadAddon(new LigaturesAddon());
|
||||
}
|
||||
this.term.loadAddon(new Unicode11Addon());
|
||||
|
|
|
|||
Loading…
Reference in a new issue