mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-18 06:28:40 -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:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [14.x]
|
node-version: [14.x]
|
||||||
os: [macos-11.0, ubuntu-latest, windows-latest]
|
os:
|
||||||
|
- macos-11.0
|
||||||
|
- ubuntu-18.04
|
||||||
|
- windows-latest
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
||||||
|
|
@ -176,7 +176,7 @@ export default class Term extends React.PureComponent<TermProps> {
|
||||||
if (useWebGL) {
|
if (useWebGL) {
|
||||||
this.term.loadAddon(new WebglAddon());
|
this.term.loadAddon(new WebglAddon());
|
||||||
}
|
}
|
||||||
if (props.disableLigatures !== true) {
|
if (props.disableLigatures !== true && !useWebGL) {
|
||||||
this.term.loadAddon(new LigaturesAddon());
|
this.term.loadAddon(new LigaturesAddon());
|
||||||
}
|
}
|
||||||
this.term.loadAddon(new Unicode11Addon());
|
this.term.loadAddon(new Unicode11Addon());
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue