summaryrefslogtreecommitdiffhomepage
path: root/android/src
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-08-28 18:16:22 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-09-02 13:15:27 +0000
commitf8560cb610d4fe6bc2f3f519b33447e7f2615cef (patch)
tree8c1944b23cdda4d032bb992641bafe20ed1d2833 /android/src
parentd427b902134040688d037724bae283d023e1fd9c (diff)
downloadmullvadvpn-f8560cb610d4fe6bc2f3f519b33447e7f2615cef.tar.xz
mullvadvpn-f8560cb610d4fe6bc2f3f519b33447e7f2615cef.zip
Change the view ID of the login input area
Diffstat (limited to 'android/src')
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/ui/AccountInput.kt2
-rw-r--r--android/src/main/res/layout/account_input.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/AccountInput.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/AccountInput.kt
index 76ac2a86cf..afc16a34b6 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/AccountInput.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/AccountInput.kt
@@ -49,7 +49,7 @@ class AccountInput(val parentView: View, context: Context) {
}
val container: AccountInputContainer = parentView.findViewById(R.id.account_input_container)
- val input: TextView = parentView.findViewById(R.id.account_input)
+ val input: TextView = parentView.findViewById(R.id.login_input)
val button: ImageButton = parentView.findViewById(R.id.login_button)
val accountHistoryList: ListView = parentView.findViewById(R.id.account_history_list)
diff --git a/android/src/main/res/layout/account_input.xml b/android/src/main/res/layout/account_input.xml
index 8e3ca9dd98..1c23583c42 100644
--- a/android/src/main/res/layout/account_input.xml
+++ b/android/src/main/res/layout/account_input.xml
@@ -1,5 +1,5 @@
<merge xmlns:android="http://schemas.android.com/apk/res/android">
- <EditText android:id="@+id/account_input"
+ <EditText android:id="@+id/login_input"
android:digits="0123456789"
android:layout_width="match_parent"
android:layout_height="match_parent"