Fixed issue resulting in lower case commands not being properly recognized

This commit is contained in:
michael starke
2014-12-08 21:49:20 +01:00
parent 1edb41f11b
commit d372427809

View File

@@ -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];