From d95db4eb1ef141ca32689bbe29132808888aaf8a Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sat, 13 Sep 2025 15:03:55 -0700 Subject: [PATCH] 2.7.2 Text Field Background Changes (#1399) * Bump version * iOS 26 styled keyboard toolbar Update tips backgrounds * Link the logo to the about page * Remove double logo on node list, update scary location log message, update tls toggle visibility and keyboard scroll dismiss on mqtt config * Remove redundant colorScheme check * Change background for textfield from a capsule to a RoundedRectangle --- .../Views/Messages/TextMessageField/TextMessageField.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meshtastic/Views/Messages/TextMessageField/TextMessageField.swift b/Meshtastic/Views/Messages/TextMessageField/TextMessageField.swift index 52067991..e13ac808 100644 --- a/Meshtastic/Views/Messages/TextMessageField/TextMessageField.swift +++ b/Meshtastic/Views/Messages/TextMessageField/TextMessageField.swift @@ -38,11 +38,11 @@ struct TextMessageField: View { TextField("Message", text: $typingMessage, axis: .vertical) .padding(10) .background( - Capsule() + RoundedRectangle(cornerRadius: 20) .strokeBorder(.tertiary, lineWidth: 1) - .background(Capsule().fill(Color(.systemBackground))) + .background(RoundedRectangle(cornerRadius: 20).fill(Color(.systemBackground))) ) - .clipShape(Capsule()) + .clipShape(RoundedRectangle(cornerRadius: 20)) .onChange(of: typingMessage) { _, value in totalBytes = value.utf8.count while totalBytes > Self.maxbytes {