fix divide by zero (#1911)

This commit is contained in:
Thai D. V 2024-01-21 16:45:00 +07:00 committed by GitHub
parent 17387626b8
commit 92662665b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -197,6 +197,8 @@ struct DefaultPreviewImage: View {
}
private func calculateSize(_ proposal: ProposedViewSize) -> CGSize {
guard originalWidth > 0 else { return CGSize.zero }
return switch (proposal.width, proposal.height) {
case (nil, nil):
CGSize(width: originalWidth, height: originalWidth)