From 55f700dc1696d292edba2a83ea66df01043568a4 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 16 Jan 2024 20:07:32 -0800 Subject: [PATCH] Set min width/height for setup. --- Sources/Secretive/Views/SetupView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Secretive/Views/SetupView.swift b/Sources/Secretive/Views/SetupView.swift index 2cf6e51..ffd142c 100644 --- a/Sources/Secretive/Views/SetupView.swift +++ b/Sources/Secretive/Views/SetupView.swift @@ -26,7 +26,7 @@ struct SetupView: View { } } } - .frame(idealWidth: 500, idealHeight: 500) + .frame(minWidth: 500, idealWidth: 500, minHeight: 500, idealHeight: 500) }