From 19fc951d74633fbefced4e9a3fbbd47d624c3589 Mon Sep 17 00:00:00 2001 From: BenjaminMuslic Date: Tue, 30 Apr 2024 14:24:44 -0500 Subject: [PATCH] Added automatic capitalization to profile name fields --- app/src/main/res/layout/edit_profile_name_fragment.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/layout/edit_profile_name_fragment.xml b/app/src/main/res/layout/edit_profile_name_fragment.xml index 1a5a73430ba..dd4c8e46f64 100644 --- a/app/src/main/res/layout/edit_profile_name_fragment.xml +++ b/app/src/main/res/layout/edit_profile_name_fragment.xml @@ -36,7 +36,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:autofillHints="personGivenName" - android:inputType="textPersonName" + android:inputType="textCapWords|textPersonName" android:singleLine="true" /> @@ -59,7 +59,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:autofillHints="personFamilyName" - android:inputType="textPersonName" + android:inputType="textCapWords|textPersonName" android:singleLine="true" />