Set min width/height for setup. (#518)

This commit is contained in:
Max Goedjen 2024-01-16 20:08:48 -08:00 committed by GitHub
parent 30c1d36974
commit bb63ae8469
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ struct SetupView: View {
}
}
}
.frame(idealWidth: 500, idealHeight: 500)
.frame(minWidth: 500, idealWidth: 500, minHeight: 500, idealHeight: 500)
}