Skip to content

Commit

Permalink
Added automatic capitalization to profile name fields.
Browse files Browse the repository at this point in the history
Resolves #13544
  • Loading branch information
BenjaminMuslic authored and alex-signal committed May 8, 2024
1 parent cc98ece commit c261df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/edit_profile_name_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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" />

</com.google.android.material.textfield.TextInputLayout>
Expand All @@ -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" />

</com.google.android.material.textfield.TextInputLayout>
Expand Down

0 comments on commit c261df4

Please sign in to comment.