We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a08803b commit 8c32c22Copy full SHA for 8c32c22
src/js/index-electron.js
@@ -40,6 +40,10 @@ function createWindow () {
40
});
41
}
42
43
+// Workaround for launching error "GPU process isn't usable. Goodbye."
44
+// See issue https://github.com/sozi-projects/Sozi/issues/603
45
+app.commandLine.appendSwitch("disable-gpu-sandbox");
46
+
47
// Prevent Electron from altering colors in the SVG.
48
if (process.env.SOZI_DISABLE_COLOR_CORRECT_RENDERING) {
49
app.commandLine.appendSwitch("disable-color-correct-rendering");
0 commit comments