OSDN Git Service

Fix Clear Credentials item
authorKenny Root <kroot@google.com>
Mon, 22 Apr 2013 20:41:18 +0000 (13:41 -0700)
committerKenny Root <kroot@google.com>
Mon, 22 Apr 2013 20:42:45 +0000 (13:42 -0700)
This should be enabled whenever there is a credential in the keystore
since there can be unencrypted credentials in there now.

Bug: 8651830
Change-Id: I52a8262011d744d782b35d97deaabcba3b23f32b

src/com/android/settings/SecuritySettings.java

index c324dd8..e97c73f 100644 (file)
@@ -452,7 +452,7 @@ public class SecuritySettings extends SettingsPreferenceFragment
         }
 
         if (mResetCredentials != null) {
-            mResetCredentials.setEnabled(!mKeyStore.isUnlocked());
+            mResetCredentials.setEnabled(!mKeyStore.isEmpty());
         }
     }