From 4d2f90f88d5fae10d27fcb1c6e28ea7cca278724 Mon Sep 17 00:00:00 2001 From: ssig33 Date: Sun, 26 Oct 2025 12:28:25 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A6=E3=82=A3=E3=83=B3=E3=83=89=E3=82=A6?= =?UTF-8?q?=E3=81=AE=E6=9C=80=E5=B0=8F=E5=B9=85=E3=82=92=E7=B8=AE=E5=B0=8F?= =?UTF-8?q?=E3=81=97=E3=80=81=E6=9F=94=E8=BB=9F=E3=81=AAUI=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA=E3=81=AB=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - WindowGroupのframe指定でminWidthを600から200へ変更 --- Sources/OreCalendarApp.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OreCalendarApp.swift b/Sources/OreCalendarApp.swift index 82ab1ff..ccbf54b 100644 --- a/Sources/OreCalendarApp.swift +++ b/Sources/OreCalendarApp.swift @@ -5,7 +5,7 @@ struct OreCalendarApp: App { var body: some Scene { WindowGroup { ContentView() - .frame(minWidth: 600, minHeight: 400) + .frame(minWidth: 200, minHeight: 400) } } }