From 873fecf548dcdd2abaabdf9ad9b37dee980b20a5 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 16 Dec 2020 14:14:07 -0800 Subject: [PATCH] Revert "performance: Disable hardware acceleration to decrease the load on GPU." This reverts commit fb74251a2cfebdb7b4e7992999f093028852d426. The actual problem in #213 was the infinite bouncing question mark hotspot animation (https://github.com/zulip/zulip/issues/13760). Signed-off-by: Anders Kaseorg --- app/main/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/main/index.ts b/app/main/index.ts index acd3754c..18220e11 100644 --- a/app/main/index.ts +++ b/app/main/index.ts @@ -143,9 +143,6 @@ function createMainWindow(): Electron.BrowserWindow { return win; } -// Decrease load on GPU (experimental) -app.disableHardwareAcceleration(); - // Temporary fix for Electron render colors differently // More info here - https://github.com/electron/electron/issues/10732 app.commandLine.appendSwitch('force-color-profile', 'srgb');