diff --git a/Meshtastic/Enums/IntervalEnums.swift b/Meshtastic/Enums/IntervalEnums.swift index 5fc0dc20..469ae308 100644 --- a/Meshtastic/Enums/IntervalEnums.swift +++ b/Meshtastic/Enums/IntervalEnums.swift @@ -93,6 +93,7 @@ enum SenderIntervals: Int, CaseIterable, Identifiable { enum UpdateIntervals: Int, CaseIterable, Identifiable { + case tenSeconds = 10 case fifteenSeconds = 15 case thirtySeconds = 30 case oneMinute = 60 @@ -118,6 +119,8 @@ enum UpdateIntervals: Int, CaseIterable, Identifiable { get { switch self { + case .tenSeconds: + return NSLocalizedString("interval.ten.seconds", comment: "Ten Seconds") case .fifteenSeconds: return NSLocalizedString("interval.fifteen.seconds", comment: "Fifteen Seconds") case .thirtySeconds: diff --git a/Meshtastic/Views/Settings/AppSettings.swift b/Meshtastic/Views/Settings/AppSettings.swift index 133a7b81..6802a1ff 100644 --- a/Meshtastic/Views/Settings/AppSettings.swift +++ b/Meshtastic/Views/Settings/AppSettings.swift @@ -80,7 +80,7 @@ struct AppSettings: View { Toggle(isOn: $userSettings.meshMapRecentering) { - Label("map.recentering", systemImage: "rectangle.center.inset.filled") + Label("map.recentering", systemImage: "camera.metering.center.weighted") } .toggleStyle(SwitchToggleStyle(tint: .accentColor)) }