Skip to content
Snippets Groups Projects
Commit 8caa75d4 authored by Pyry Kontio's avatar Pyry Kontio Committed by George Nachman
Browse files

Fixed yet another cornercase with the "¥".

parent 2c4d9462
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -58,7 +58,7 @@
- (NSEvent *)eventByChangingYenToBackslash {
// NSEvent: type=KeyDown loc=(0,477) time=103943.2 flags=0x80120 win=0x7fd5786432b0 winNum=3667 ctxt=0x0 chars="\" unmodchars="¥" repeat=0 keyCode=93
if ([self.charactersIgnoringModifiers isEqualToString:@"¥"]) {
if ([self.charactersIgnoringModifiers isEqualToString:@"¥"] && [self.characters isEqualToString:@"¥"]) {
return [NSEvent keyEventWithType:self.type
location:self.locationInWindow
modifierFlags:self.modifierFlags
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment