From bdc4f53e91d77b01cae8feb30c3c92df998591a4 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Thu, 12 May 2022 12:41:37 -0700 Subject: [PATCH] Disable 2d canvas acceleration --- app/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/main.ts b/app/main.ts index cc0726820..52ca71a5e 100644 --- a/app/main.ts +++ b/app/main.ts @@ -551,6 +551,7 @@ async function createWindow() { spellcheck: await getSpellCheckSetting(), backgroundThrottling: isThrottlingEnabled, enablePreferredSizeMode: true, + disableBlinkFeatures: 'Accelerated2dCanvas,AcceleratedSmallCanvases', }, icon: windowIcon, ...pick(windowConfig, ['autoHideMenuBar', 'width', 'height', 'x', 'y']),