diff --git a/src/main/index.js b/src/main/index.js index 4c00a6b..87a0ef1 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -95,7 +95,6 @@ function createMainWindow() { frame: false, // 无边框 autoHideMenuBar: true, maximizable: false, - fullscreen: true, icon: join(__dirname, '../../resources/logo2.ico'), ...(process.platform === 'linux' ? { icon } : {}), webPreferences: { @@ -138,6 +137,7 @@ function createMainWindow() { // mainWindow.setAlwaysOnTop(true, "screen-saver") // 将窗口设置为顶层窗口 // mainWindow.setVisibleOnAllWorkspaces(true) // 如果窗口在所有工作区都可见 + mainWindow.maximize(); // 第三步: 开启remote服务 remote.enable(mainWindow.webContents) }