Position precision slider cleanup

This commit is contained in:
Garth Vander Houwen 2025-05-21 22:11:03 -07:00
parent 530872e50f
commit b962c68ac2
2 changed files with 8 additions and 8 deletions

View file

@ -130,11 +130,11 @@ struct MQTTConfig: View {
Text("To comply with privacy laws like CCPA and GDPR, we avoid sharing exact location data. Instead, we use anonymized or approximate (imprecise) location information to protect your privacy.")
.foregroundColor(.gray)
.font(.callout)
Slider(value: $mapPositionPrecision, in: 11...14, step: 1) {
Slider(value: $mapPositionPrecision, in: 12...15, step: 1) {
} minimumValueLabel: {
Image(systemName: "minus")
} maximumValueLabel: {
Image(systemName: "plus")
} maximumValueLabel: {
Image(systemName: "minus")
}
Text(PositionPrecision(rawValue: Int(mapPositionPrecision))?.description ?? "")
.foregroundColor(.gray)