From 6d94ee0c2c74d87d0cf1227f018710e2384b38ec Mon Sep 17 00:00:00 2001 From: Martin Fournier Date: Fri, 17 Dec 2021 05:50:45 -0500 Subject: [PATCH] Fix #1902: Set default electron color to black If loading of the index.html is slow, there should be no white background anymore. --- electron/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/main.js b/electron/main.js index b9ef428b4..6723dbd01 100644 --- a/electron/main.js +++ b/electron/main.js @@ -14,6 +14,7 @@ function createWindow(killall) { win = new BrowserWindow({ show: false, backgroundThrottling: false, + backgroundColor: '#000000', }); win.removeMenu();