diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-14 21:53:57 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-14 21:53:57 +0100 |
commit | 0caa4de4feedddab59b2fa471017803ea12d26cc (patch) | |
tree | e2552c6829be406e94bc6293e82e02acd16f22cd /OpenPGP-Keychain/src | |
parent | b5013be03725f21832e44fb538d00a90763fb94a (diff) | |
download | open-keychain-0caa4de4feedddab59b2fa471017803ea12d26cc.tar.gz open-keychain-0caa4de4feedddab59b2fa471017803ea12d26cc.tar.bz2 open-keychain-0caa4de4feedddab59b2fa471017803ea12d26cc.zip |
toast on copy to clipboard
Diffstat (limited to 'OpenPGP-Keychain/src')
-rw-r--r-- | OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ViewKeyActivity.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ViewKeyActivity.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ViewKeyActivity.java index e2f90e87c..90655ee46 100644 --- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ViewKeyActivity.java +++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ViewKeyActivity.java @@ -433,6 +433,8 @@ public class ViewKeyActivity extends SherlockFragmentActivity implements CreateN new long[] { masterKeyId }); ClipboardReflection.copyToClipboard(this, keyringArmored.get(0)); + Toast.makeText(getApplicationContext(), R.string.key_copied_to_clipboard, Toast.LENGTH_LONG) + .show(); } private void shareNfc() { |