From: David A. Velasco Date: Fri, 21 Jun 2013 12:29:47 +0000 (+0200) Subject: Fixed focus in AuthenticarActivity for changing password so that server URL is not... X-Git-Tag: oc-android-1.4.3~10^2~3 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/af4b0bc90b4e6ca504d4a1169fd92cff794e9816?ds=inline;hp=--cc Fixed focus in AuthenticarActivity for changing password so that server URL is not editable --- af4b0bc90b4e6ca504d4a1169fd92cff794e9816 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();