diff options
author | Ash Hughes <ashes-iontach@hotmail.com> | 2013-03-19 02:04:56 +0000 |
---|---|---|
committer | Ash Hughes <ashes-iontach@hotmail.com> | 2013-03-19 02:04:56 +0000 |
commit | 650b22d5e9512ede43b0c742799d49b061dda587 (patch) | |
tree | aa32b62b8496a1ff96f85e4673faa5dd8d8ead65 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java | |
parent | 2d856c5f0e4f0ba9e1973ad85fde14ad06a1133c (diff) | |
download | open-keychain-650b22d5e9512ede43b0c742799d49b061dda587.tar.gz open-keychain-650b22d5e9512ede43b0c742799d49b061dda587.tar.bz2 open-keychain-650b22d5e9512ede43b0c742799d49b061dda587.zip |
only sign keys if private key has capability
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java')
-rw-r--r-- | OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java index 14ccb17c7..10acd38d9 100644 --- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java +++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/SelectSecretKeyActivity.java @@ -34,8 +34,11 @@ public class SelectSecretKeyActivity extends SherlockFragmentActivity { public static final String ACTION_SELECT_SECRET_KEY = Constants.INTENT_PREFIX + "SELECT_SECRET_KEYRING"; + public static final String EXTRA_FILTER_CERTIFY = "filter_certify"; + public static final String RESULT_EXTRA_MASTER_KEY_ID = "masterKeyId"; public static final String RESULT_EXTRA_USER_ID = "userId"; + public static boolean filterCertify = false; @Override protected void onCreate(Bundle savedInstanceState) { @@ -61,6 +64,8 @@ public class SelectSecretKeyActivity extends SherlockFragmentActivity { // } // }); + filterCertify = getIntent().getBooleanExtra(EXTRA_FILTER_CERTIFY, false); + handleIntent(getIntent()); } |