mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Merge branch 'canary'
This commit is contained in:
commit
001210420a
2 changed files with 5 additions and 2 deletions
5
.github/workflows/nodejs.yml
vendored
5
.github/workflows/nodejs.yml
vendored
|
|
@ -14,7 +14,10 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
os: [macos-11.0, ubuntu-latest, windows-latest]
|
||||
os:
|
||||
- macos-11.0
|
||||
- ubuntu-18.04
|
||||
- windows-latest
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
|||
|
|
@ -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