Merge pull request #1972 from MartinFournier/feature/electron-background-color

Fix #1902: Set default electron color to black
This commit is contained in:
hydroflame 2021-12-17 12:55:32 -05:00 committed by GitHub
commit b122cebc98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,7 @@ function createWindow(killall) {
const win = new BrowserWindow({ const win = new BrowserWindow({
show: false, show: false,
backgroundThrottling: false, backgroundThrottling: false,
backgroundColor: '#000000',
}); });
win.removeMenu(); win.removeMenu();