From 9d4964ed996102ead96d7045a84bbec877749199 Mon Sep 17 00:00:00 2001 From: Daniel Andrei Date: Wed, 22 Jan 2020 11:04:26 +0200 Subject: [PATCH] Fix vibrancy issue on app refresh --- source/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/index.ts b/source/index.ts index 571c73585..928b5f4f8 100644 --- a/source/index.ts +++ b/source/index.ts @@ -530,7 +530,7 @@ function createMainWindow(): BrowserWindow { if (is.macos) { ipcMain.on('set-vibrancy', () => { - mainWindow.setBackgroundColor('#00000000'); // Transparent, workaround for vibrancy issue. + mainWindow.setBackgroundColor('#80FFFFFF'); // Transparent, workaround for vibrancy issue. mainWindow.setVibrancy('sidebar'); }); }