Update image, remove unnesary version checks in widgets

This commit is contained in:
Garth Vander Houwen 2023-09-21 13:25:38 -07:00
parent 4130e7ca00
commit 945aaa9eaf
2 changed files with 1 additions and 2 deletions

View file

@ -150,7 +150,7 @@ struct NodeMapSwiftUI: View {
} else {
if showNodeHistory {
if pf.contains(.Heading) {
Image(systemName: pf.contains(.Speed) && position.speed > 1 ? "location.north" : "hexagon")
Image(systemName: pf.contains(.Speed) && position.speed > 1 ? "location.north.circle" : "hexagon")
.padding(2)
.foregroundStyle(Color(UIColor(hex: UInt32(node.num)).lighter()).isLight() ? .black : .white)
.background(Color(UIColor(hex: UInt32(node.num)).lighter()))

View file

@ -9,7 +9,6 @@ import ActivityKit
import WidgetKit
import SwiftUI
@available(iOS 16.2, *)
struct WidgetsLiveActivity: Widget {
var body: some WidgetConfiguration {