We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b91e67b commit 7d62a5bCopy full SHA for 7d62a5b
1 file changed
src/main.js
@@ -57,6 +57,12 @@ const nodeCachedDataDir = getNodeCachedDir();
57
// Configure static command line arguments
58
const argvConfig = configureCommandlineSwitchesSync(args);
59
60
+// Remove env set by snap https://github.com/microsoft/vscode/issues/85344
61
+if (process.env['SNAP']) {
62
+ delete process.env['GDK_PIXBUF_MODULE_FILE'];
63
+ delete process.env['GDK_PIXBUF_MODULEDIR'];
64
+}
65
+
66
/**
67
* Support user defined locale: load it early before app('ready')
68
* to have more things running in parallel.
0 commit comments