From bb63ae8469d3906f8d92b9e3f27b97c81a71d398 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 16 Jan 2024 20:08:48 -0800 Subject: [PATCH] Set min width/height for setup. (#518) --- 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) }