mirror of
https://github.com/keycastr/keycastr.git
synced 2026-05-15 14:15:50 -06:00
Fix logic of when to add option symbol
This commit is contained in:
parent
d9e2b94bb2
commit
91c2b438e6
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ static NSString* kLeftTabString = @"\xe2\x87\xa4";
|
|||
[mutableResponse appendString:kControlKeyString];
|
||||
}
|
||||
|
||||
if (hasOptionModifier && ([event isKindOfClass:[KCKeystroke class]] && [(KCKeystroke *)event isCommand]))
|
||||
if (hasOptionModifier && (!displayModifiedKeyWhenOptionPressed || ([event isKindOfClass:[KCKeystroke class]] && [(KCKeystroke *)event isCommand])))
|
||||
{
|
||||
[mutableResponse appendString:kOptionKeyString];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue