diff --git a/Meshtastic/Views/Nodes/Helpers/Map/WaypointForm.swift b/Meshtastic/Views/Nodes/Helpers/Map/WaypointForm.swift index 36bf1555..54aa5b29 100644 --- a/Meshtastic/Views/Nodes/Helpers/Map/WaypointForm.swift +++ b/Meshtastic/Views/Nodes/Helpers/Map/WaypointForm.swift @@ -29,7 +29,7 @@ struct WaypointForm: View { @State private var lockedTo: Int64 = 0 var body: some View { - VStack { + NavigationStack { if editMode { Text((waypoint.id > 0) ? "Editing Waypoint" : "Create Waypoint") .font(.largeTitle) @@ -385,5 +385,7 @@ struct WaypointForm: View { longitude = waypoint.coordinate.longitude } } + .presentationDetents([.fraction(0.75)]) + .presentationDragIndicator(.visible) } } diff --git a/de.lproj/Localizable.strings b/de.lproj/Localizable.strings index e58c38b6..60d9ff6b 100644 --- a/de.lproj/Localizable.strings +++ b/de.lproj/Localizable.strings @@ -225,6 +225,7 @@ "received.ack.real"="Recipient Ack"; "ringtone"="Ringtone"; "ringtone.config"="Ringtone Config"; +"routes"="Routes"; "routing.acknowledged"="Bestätigt"; "routing.noroute"="Keine Route"; "routing.gotnak"="Negative Empfangsbestätigung empfangen"; diff --git a/en.lproj/Localizable.strings b/en.lproj/Localizable.strings index ae374695..23c19d6a 100644 --- a/en.lproj/Localizable.strings +++ b/en.lproj/Localizable.strings @@ -228,6 +228,7 @@ "received.ack.real"="Recipient Ack"; "ringtone"="Ringtone"; "ringtone.config"="Ringtone Config"; +"routes"="Routes"; "routing.acknowledged"="Acknowledged"; "routing.noroute"="No Route"; "routing.gotnak"="Received a negative acknowledgment"; diff --git a/pl.lproj/Localizable.strings b/pl.lproj/Localizable.strings index ad7bc540..489db06a 100644 --- a/pl.lproj/Localizable.strings +++ b/pl.lproj/Localizable.strings @@ -226,6 +226,7 @@ "received.ack.real"="Odbiorca potwierdzenia"; "ringtone"="Dzwonek"; "ringtone.config"="Konfiguracja dzwonka"; +"routes"="Routes"; "routing.acknowledged"="Potwierdzono"; "routing.noroute"="Brak trasy"; "routing.gotnak"="Otrzymano negatywne potwierdzenie"; diff --git a/zh-Hans.lproj/Localizable.strings b/zh-Hans.lproj/Localizable.strings index d1b7dcc8..cd4a522b 100644 --- a/zh-Hans.lproj/Localizable.strings +++ b/zh-Hans.lproj/Localizable.strings @@ -225,6 +225,7 @@ "received.ack.real"="收件人确认"; "ringtone"="铃声"; "ringtone.config"="铃声设置"; +"routes"="Routes"; "routing.acknowledged"="确认"; "routing.noroute"="找不到目标"; "routing.gotnak"="收到否认";