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 551cea8 commit 919a845Copy full SHA for 919a845
packages/compass/src/main/application.ts
@@ -205,6 +205,11 @@ class CompassApplication {
205
// For Linux users with drivers that are avoided by Chromium we disable the
206
// GPU check to attempt to bypass the disabled WebGL settings.
207
app.commandLine.appendSwitch('ignore-gpu-blacklist', 'true');
208
+
209
+ if (process.platform === 'linux') {
210
+ // Force GTK 3 on Linux (Workaround for https://github.com/electron/electron/issues/46538)
211
+ app.commandLine.appendSwitch('gtk-version', '3');
212
+ }
213
}
214
215
private static setupAutoUpdate(): void {
0 commit comments