fix: 统一窗口初始分辨率与最小分辨率,调整页面padding一致性

This commit is contained in:
2026-03-11 20:44:55 +08:00
parent bbd33339a5
commit 320d2654f5
3 changed files with 4 additions and 4 deletions

View File

@@ -44,8 +44,8 @@ async function createWindow() {
const initialSymbolColor = nativeTheme.shouldUseDarkColors ? '#ffffff' : '#000000';
const mainWindow = new BrowserWindow({
width: 1280,
height: 800,
width: 1600,
height: 900,
minWidth: 1600,
minHeight: 900,
autoHideMenuBar: true,