We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a1ae93 + a1616ae commit d39235fCopy full SHA for d39235f
lib/console/view.js
@@ -26,7 +26,12 @@ class TerminalElement extends HTMLElement {
26
this.model.terminal.open(this)
27
28
if (this.model.isWebgl) {
29
- this.model.terminal.loadAddon(new WebglAddon())
+ try {
30
+ this.model.terminal.loadAddon(new WebglAddon())
31
+ } catch (err) {
32
+ console.error('Tried to start terminal with WebGL backend, but encountered the following error:')
33
+ console.error(err)
34
+ }
35
}
36
37
this.subs.add(atom.config.observe('editor.fontSize', (val) => {
0 commit comments