From 63520a64889a667c79be3406f85b5c191ad24635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E5=B7=A5=E7=A8=8B=E5=B8=88?= Date: Thu, 20 Aug 2026 02:52:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(pc-client):=20=E4=B8=BB=E7=AA=97=E5=8F=A3?= =?UTF-8?q?=E4=B8=8B=E9=99=90=E6=94=B9=E4=B8=BA=201080=C3=97680=EF=BC=88B-?= =?UTF-8?q?171=20=E7=89=B9=E6=89=B9=E4=BB=85=E4=B8=A4=E5=B8=B8=E9=87=8F?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 仅改 pc-client/electron/main/windowManage.ts 的 minWidth/minHeight。 electron/ 其余文件仍冻结。 Co-authored-by: Cursor Co-authored-by: multica-agent --- pc-client/electron/main/windowManage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc-client/electron/main/windowManage.ts b/pc-client/electron/main/windowManage.ts index 343ae19..471002a 100644 --- a/pc-client/electron/main/windowManage.ts +++ b/pc-client/electron/main/windowManage.ts @@ -35,8 +35,8 @@ export function createMainWindow() { show: false, width: 1200, height: 800, - minWidth: 1024, - minHeight: 726, + minWidth: 1080, + minHeight: 680, titleBarStyle: "hiddenInset", webPreferences: { preload: global.pathConfig.preload,