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 7eed866 commit 8488dfdCopy full SHA for 8488dfd
src/index.ts
@@ -114,6 +114,11 @@ protocol.registerSchemesAsPrivileged([
114
{ scheme: 'mailto', privileges: { standard: true } },
115
]);
116
117
+// https://github.com/electron/electron/issues/46538#issuecomment-2808806722
118
+if (is.linux()) {
119
+ app.commandLine.appendSwitch('gtk-version', '3');
120
+}
121
+
122
// Ozone platform hint: Required for Wayland support
123
app.commandLine.appendSwitch('ozone-platform-hint', 'auto');
124
// SharedArrayBuffer: Required for downloader (@ffmpeg/core-mt)
0 commit comments