From 616df3d6249ca1bed511abc19375ba09c0e0690c Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 27 Jun 2022 08:41:56 -0700 Subject: [PATCH] Validate field sizes --- Meshtastic/Views/Settings/UserConfig.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Settings/UserConfig.swift b/Meshtastic/Views/Settings/UserConfig.swift index 9d49a85e..a580da78 100644 --- a/Meshtastic/Views/Settings/UserConfig.swift +++ b/Meshtastic/Views/Settings/UserConfig.swift @@ -66,7 +66,7 @@ struct UserConfig: View { }) .foregroundColor(.gray) } - .keyboardType(.asciiCapable) + .keyboardType(.default) .disableAutocorrection(true) .listRowSeparator(.visible) @@ -75,7 +75,7 @@ struct UserConfig: View { TextField("Long Name", text: $shortName) .foregroundColor(.gray) } - .keyboardType(.asciiCapable) + .keyboardType(.default) .disableAutocorrection(true) .listRowSeparator(.visible)