From 5a5064da43dd654013872998a74c9d3c221fd936 Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Thu, 8 Mar 2018 21:42:09 +0100 Subject: [PATCH] Set Cmd + T as default keystroke for autotype command --- MacPass/MPContextMenuHelper.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MacPass/MPContextMenuHelper.m b/MacPass/MPContextMenuHelper.m index 0a2dcf97..3691ffa4 100644 --- a/MacPass/MPContextMenuHelper.m +++ b/MacPass/MPContextMenuHelper.m @@ -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) {