From f01e30c59a25c670c07d0d3d3db2df1aa4dc66fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20H=C3=A4usler?= Date: Mon, 21 Mar 2022 14:52:37 +0100 Subject: [PATCH] Remove Wayland workaround (#3147) --- src/main/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/index.js b/src/main/index.js index 7dff8d72..eb50b0d0 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -33,11 +33,6 @@ const args = cli() const appEnvironment = setupEnvironment(args) initializeLogger(appEnvironment) -// Workaround for GH#1359 -if (process.platform === 'linux' && process.env.XDG_SESSION_TYPE === 'wayland') { - app.disableHardwareAcceleration() -} - if (args['--disable-gpu']) { app.disableHardwareAcceleration() }