mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 16:22:21 +00:00
Fixed issue resulting in lower case commands not being properly recognized
This commit is contained in:
@@ -135,7 +135,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Test for modifer Key */
|
/* Test for modifer Key */
|
||||||
NSString *commandString = [context.evaluatedCommand substringWithRange:commandRange];
|
NSString *commandString = [[context.evaluatedCommand substringWithRange:commandRange] uppercaseString];
|
||||||
/* append commands for non-modifer keys */
|
/* append commands for non-modifer keys */
|
||||||
if(![self updateModifierMask:&collectedModifers forCommand:commandString]) {
|
if(![self updateModifierMask:&collectedModifers forCommand:commandString]) {
|
||||||
[self appendCommandForEntry:context.entry withString:commandString toCommands:commands activeModifer:collectedModifers];
|
[self appendCommandForEntry:context.entry withString:commandString toCommands:commands activeModifer:collectedModifers];
|
||||||
|
|||||||
Reference in New Issue
Block a user