From af4b0bc90b4e6ca504d4a1169fd92cff794e9816 Mon Sep 17 00:00:00 2001 From: "David A. Velasco" Date: Fri, 21 Jun 2013 14:29:47 +0200 Subject: [PATCH] Fixed focus in AuthenticarActivity for changing password so that server URL is not editable --- src/com/owncloud/android/authentication/AuthenticatorActivity.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/owncloud/android/authentication/AuthenticatorActivity.java b/src/com/owncloud/android/authentication/AuthenticatorActivity.java index 015be51d..b929f639 100644 --- a/src/com/owncloud/android/authentication/AuthenticatorActivity.java +++ b/src/com/owncloud/android/authentication/AuthenticatorActivity.java @@ -253,7 +253,9 @@ implements OnRemoteOperationListener, OnSslValidatorListener, OnFocusChangeList if (mAction == ACTION_UPDATE_TOKEN) { /// lock things that should not change mHostUrlInput.setEnabled(false); + mHostUrlInput.setFocusable(false); mUsernameInput.setEnabled(false); + mUsernameInput.setFocusable(false); mOAuth2Check.setVisibility(View.GONE); if (!mServerIsValid && mOcServerChkOperation == null) { checkOcServer(); -- 2.11.0