diff --git a/package.json b/package.json index 7e14bd6bc..fad994c35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "skye", - "version": "6.2.1", + "version": "6.2.2", "sideEffects": false, "description": "Extensible, fast and innovative web browser with Innatical UI.", "keywords": [ diff --git a/src/main/view.ts b/src/main/view.ts index 22f309c8b..a03a11338 100644 --- a/src/main/view.ts +++ b/src/main/view.ts @@ -79,7 +79,7 @@ export class View { }, }); - this.browserView.setBackgroundColor('#fff'); + this.browserView.setBackgroundColor('#FFFFFFFF'); this.incognito = incognito; @@ -131,6 +131,7 @@ export class View { }); this.webContents.addListener('did-navigate', async (e, url) => { + this.browserView.setBackgroundColor('#FFFFFFFF'); this.emitEvent('did-navigate', url); await this.addHistoryItem(url); await this.updateURL(url);