Set Cmd + T as default keystroke for autotype command

This commit is contained in:
Michael Starke
2018-03-08 21:42:09 +01:00
parent 72f7991566
commit 5a5064da43

View File

@@ -118,8 +118,7 @@ static void MPContextmenuHelperBeginSection(NSMutableArray *items) {
if(insertAutotype) {
NSMenuItem *performAutotype = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"PERFORM_AUTOTYPE_FOR_ENTRY", @"Menu item to perform autotype with the selected entry")
action:[MPActionHelper actionOfType:MPActionPerformAutotypeForSelectedEntry]
keyEquivalent:@"a"];
performAutotype.keyEquivalentModifierMask = (performAutotype.keyEquivalentModifierMask | NSControlKeyMask);
keyEquivalent:@"t"];
[items addObject:performAutotype];
}
if(insertHistory) {