We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57aef47 commit 5f2f894Copy full SHA for 5f2f894
Sources/ArcGISToolkit/Components/FeatureTemplatePicker/FeatureTemplatePicker.swift
@@ -184,8 +184,8 @@ private struct FeatureTemplateView: View {
184
let yScale = min(1, maxSize / image.size.height)
185
let scale = min(xScale, yScale)
186
return (
187
- width: image.size.width * xScale,
188
- height: image.size.height * yScale
+ width: image.size.width * scale,
+ height: image.size.height * scale
189
)
190
}
191
0 commit comments