فهرست منبع

fixed #9947 - window not showing up on first start

Eugene Pankov 1 سال پیش
والد
کامیت
e8fdb8b8f9
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      app/lib/window.ts

+ 2 - 2
app/lib/window.ts

@@ -108,7 +108,7 @@ export class Window {
 
         this.webContents = this.window.webContents
 
-        this.window.once('ready-to-show', () => {
+        this.window.webContents.once('did-finish-load', () => {
             if (process.platform === 'darwin') {
                 this.window.setVibrancy(macOSVibrancyType)
             } else if (process.platform === 'win32' && this.configStore.appearance?.vibrancy) {
@@ -139,7 +139,7 @@ export class Window {
 
         enableRemote(this.window.webContents)
 
-        this.window.loadURL(`file://${app.getAppPath()}/dist/index.html`, { extraHeaders: 'pragma: no-cache\n' })
+        this.window.loadFile(path.join(app.getAppPath(), 'dist', 'index.html'))
 
         this.window.webContents.setVisualZoomLevelLimits(1, 1)
         this.window.webContents.setZoomFactor(1)