mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Default precision of 14
This commit is contained in:
parent
4f813c12d3
commit
adab69dab7
2 changed files with 4 additions and 4 deletions
|
|
@ -149,7 +149,7 @@ struct ChannelForm: View {
|
|||
.listRowSeparator(.visible)
|
||||
.onChange(of: preciseLocation) { pl in
|
||||
if pl == false {
|
||||
positionPrecision = 13
|
||||
positionPrecision = 14
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -220,7 +220,7 @@ struct ChannelForm: View {
|
|||
}
|
||||
positionPrecision = 32
|
||||
} else {
|
||||
positionPrecision = 13
|
||||
positionPrecision = 14
|
||||
}
|
||||
hasChanges = true
|
||||
}
|
||||
|
|
@ -230,7 +230,7 @@ struct ChannelForm: View {
|
|||
.onChange(of: positionsEnabled) { pe in
|
||||
if pe {
|
||||
if positionPrecision == 0 {
|
||||
positionPrecision = 13
|
||||
positionPrecision = 14
|
||||
}
|
||||
} else {
|
||||
positionPrecision = 0
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ struct MQTTConfig: View {
|
|||
@State var nearbyTopics = [String]()
|
||||
@State var mapReportingEnabled = false
|
||||
@State var mapPublishIntervalSecs = 3600
|
||||
@State var mapPositionPrecision: Double = 13.0
|
||||
@State var mapPositionPrecision: Double = 14.0
|
||||
|
||||
let locale = Locale.current
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue