fix(ui): inboxWindow 기본 크기 1200×800 → 1440×900 (헤더 버튼 뭉개짐 해소)

This commit is contained in:
th-kim0823
2026-05-15 15:35:49 +09:00
parent 07892aea3c
commit 33b539325a

View File

@@ -22,8 +22,8 @@ export function createInboxWindow(opts: { visible?: boolean } = {}): BrowserWind
}
inboxWindow = new BrowserWindow({
width: 1200,
height: 800,
width: 1440,
height: 900,
show: false,
webPreferences: {
preload: join(__dirname, '../preload/index.js'),