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 6ee91ad commit 05d117fCopy full SHA for 05d117f
src/electron-replay-app.ts
@@ -104,6 +104,13 @@ class ElectronReplayApp {
104
console.log("app data", app.getPath("appData"));
105
console.log("user data", app.getPath("userData"));
106
107
+ // possible workaround for GTK issue on Linux
108
+ // https://github.com/webrecorder/replayweb.page/issues/430
109
+ // https://github.com/electron/electron/issues/46538#issuecomment-2808806722
110
+ if (process.env.APPIMAGE) {
111
+ app.commandLine.appendSwitch("--gtk-version", "3");
112
+ }
113
+
114
if (this.profileName) {
115
app.setPath(
116
"userData",
0 commit comments