From 33b539325a520e7d4ed3e92006352c7e81358389 Mon Sep 17 00:00:00 2001 From: th-kim0823 Date: Fri, 15 May 2026 15:35:49 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20inboxWindow=20=EA=B8=B0=EB=B3=B8=20?= =?UTF-8?q?=ED=81=AC=EA=B8=B0=201200=C3=97800=20=E2=86=92=201440=C3=97900?= =?UTF-8?q?=20(=ED=97=A4=EB=8D=94=20=EB=B2=84=ED=8A=BC=20=EB=AD=89?= =?UTF-8?q?=EA=B0=9C=EC=A7=90=20=ED=95=B4=EC=86=8C)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/windows/inboxWindow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/windows/inboxWindow.ts b/src/main/windows/inboxWindow.ts index 11f364a..aadac7f 100644 --- a/src/main/windows/inboxWindow.ts +++ b/src/main/windows/inboxWindow.ts @@ -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'),