From 74ae51938ba84c0a46a2797e9d8b7ff2f3e76ffd Mon Sep 17 00:00:00 2001 From: pokkst Date: Wed, 24 May 2023 10:46:52 -0500 Subject: [PATCH] Fix issue with username/password character limitations for nodes --- app/src/main/res/layout/add_node_bottom_sheet_dialog.xml | 2 -- app/src/main/res/layout/edit_node_bottom_sheet_dialog.xml | 2 -- 2 files changed, 4 deletions(-) diff --git a/app/src/main/res/layout/add_node_bottom_sheet_dialog.xml b/app/src/main/res/layout/add_node_bottom_sheet_dialog.xml index dd50d11..f5a8eb3 100644 --- a/app/src/main/res/layout/add_node_bottom_sheet_dialog.xml +++ b/app/src/main/res/layout/add_node_bottom_sheet_dialog.xml @@ -90,7 +90,6 @@ android:background="@drawable/edittext_bg" android:hint="@string/node_username_hint" android:inputType="text" - android:digits="-QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890.:" app:layout_constraintBottom_toTopOf="@id/password_edittext" app:layout_constraintEnd_toStartOf="@id/paste_username_imagebutton" app:layout_constraintStart_toStartOf="parent" /> @@ -120,7 +119,6 @@ android:hint="@string/node_password_hint" android:inputType="textPassword" android:visibility="gone" - android:digits="-QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890.:" app:layout_constraintBottom_toTopOf="@id/add_node_button" app:layout_constraintEnd_toStartOf="@id/paste_password_imagebutton" app:layout_constraintStart_toStartOf="parent" /> diff --git a/app/src/main/res/layout/edit_node_bottom_sheet_dialog.xml b/app/src/main/res/layout/edit_node_bottom_sheet_dialog.xml index b55f3d0..5d1418a 100644 --- a/app/src/main/res/layout/edit_node_bottom_sheet_dialog.xml +++ b/app/src/main/res/layout/edit_node_bottom_sheet_dialog.xml @@ -79,7 +79,6 @@ android:background="@drawable/edittext_bg" android:hint="@string/node_username_hint" android:inputType="text" - android:digits="-QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890.:" app:layout_constraintTop_toBottomOf="@id/address_edittext" app:layout_constraintEnd_toStartOf="@id/paste_username_imagebutton" app:layout_constraintStart_toStartOf="parent" /> @@ -110,7 +109,6 @@ android:hint="@string/node_password_hint" android:inputType="textPassword" android:visibility="gone" - android:digits="-QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890.:" app:layout_constraintTop_toBottomOf="@id/username_edittext" app:layout_constraintBottom_toTopOf="@id/delete_node_button" app:layout_constraintEnd_toStartOf="@id/paste_password_imagebutton"