Skip to content

Commit

Permalink
⌘C on a subkey copies it's formatted fingerprint.
Browse files Browse the repository at this point in the history
[#359 state:fixed assigned:mento milestone:1.2.2]
  • Loading branch information
Mento committed Jan 27, 2016
1 parent d70f4a7 commit 12da384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ActionController.m
Expand Up @@ -205,7 +205,7 @@ - (IBAction)copy:(id)sender {
} else if (responder == appDelegate.subkeyTable) {
if (subkeysController.selectedObjects.count == 1) {
GPGKey *subkey = [subkeysController.selectedObjects objectAtIndex:0];
stringForPasteboard = subkey.keyID;
stringForPasteboard = [[GPGFingerprintTransformer new] transformedValue:subkey.fingerprint];
}
} else {
NSArray *keys = [self selectedKeys];
Expand Down

0 comments on commit 12da384

Please sign in to comment.