mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 22:52:26 +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 */
|
||||
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];
|
||||
|
||||
Reference in New Issue
Block a user