From d372427809b68f8eeb0d6656bbcc28bc06c7d950 Mon Sep 17 00:00:00 2001 From: michael starke Date: Mon, 8 Dec 2014 21:49:20 +0100 Subject: [PATCH] Fixed issue resulting in lower case commands not being properly recognized --- MacPass/MPAutotypeCommand.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacPass/MPAutotypeCommand.m b/MacPass/MPAutotypeCommand.m index 0c663c29..1a490907 100644 --- a/MacPass/MPAutotypeCommand.m +++ b/MacPass/MPAutotypeCommand.m @@ -135,7 +135,7 @@ } } /* Test for modifer Key */ - NSString *commandString = [context.evaluatedCommand substringWithRange:commandRange]; + NSString *commandString = [[context.evaluatedCommand substringWithRange:commandRange] uppercaseString]; /* append commands for non-modifer keys */ if(![self updateModifierMask:&collectedModifers forCommand:commandString]) { [self appendCommandForEntry:context.entry withString:commandString toCommands:commands activeModifer:collectedModifers];