Remove gtk workaround

This commit is contained in:
Daniel García 2025-12-09 15:17:27 +01:00
parent d9840b3509
commit f18807eaca
No known key found for this signature in database
GPG Key ID: 2FA30DC7130BE717

View File

@ -103,11 +103,6 @@ export class Main {
appDataPath = path.join(process.env.SNAP_USER_DATA, "appdata");
}
// Workaround for bug described here: https://github.com/electron/electron/issues/46538
if (process.platform === "linux") {
app.commandLine.appendSwitch("gtk-version", "3");
}
app.on("ready", () => {
// on ready stuff...
});