From 5c797d7a88f3731787f6cea1423ba6956bb0dc01 Mon Sep 17 00:00:00 2001 From: mezpahlan Date: Thu, 10 Jul 2014 13:50:46 +0100 Subject: [PATCH] Update reply_captcha.xml Depending on the keyboard and device, Captcha text suggestions are still appearing. Changing the input type to textVisiblePassword as suggested by http://stackoverflow.com/questions/10870111/edit-text-without-autocorrect should solve this. --- Clover/app/src/main/res/layout/reply_captcha.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clover/app/src/main/res/layout/reply_captcha.xml b/Clover/app/src/main/res/layout/reply_captcha.xml index c5779f91..c31b41b0 100644 --- a/Clover/app/src/main/res/layout/reply_captcha.xml +++ b/Clover/app/src/main/res/layout/reply_captcha.xml @@ -41,6 +41,6 @@ along with this program. If not, see . android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/reply_captcha" - android:inputType="textNoSuggestions"/> + android:inputType="textNoSuggestions|textVisiblePassword"/>