From f18807eacab60d0428ebcf893a4fac8da6f6e921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garci=CC=81a?= Date: Tue, 9 Dec 2025 15:17:27 +0100 Subject: [PATCH] Remove gtk workaround --- apps/desktop/src/main.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index fbb83a1bf56..06f751b061c 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -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... });