update main window default size

This commit is contained in:
geekgeekrun
2024-04-05 15:17:16 +08:00
parent 93072b2946
commit 0f7d0be266

View File

@@ -6,8 +6,8 @@ export let mainWindow: BrowserWindow | null = null
export function createMainWindow(): void {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 900,
height: 670,
width: 1024,
height: 640,
show: false,
autoHideMenuBar: true,
...(process.platform === 'linux'