From 385ba70b5ced6c6fd3ecc813aa1d5fc8fc585542 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Wed, 25 Feb 2026 10:21:26 -0500 Subject: [PATCH] Electron gtk bug fixed, workaround is no longer needed. (#18520) --- 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 63b288e9161..19f11576d64 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... });