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.
1 parent 2a1ae93 commit a1616aeCopy full SHA for a1616ae
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