This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
macOS: Fix bug where keyUp messages were forwarding to the superclass keyDown
tags/2021-05-28
reuk
4 years ago
parent
dc8145fe6a
commit
4e0f3e8c91
No known key found for this signature in database
GPG Key ID:
9ADCD339CFC98A11
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm
+ 1
- 1
modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm
View File
@@ -1785,7 +1785,7 @@ private:
if (owner == nullptr || ! owner->redirectKeyUp (ev))
{
objc_super s = { self, [NSView class] };
ObjCMsgSendSuper<void> (&s, @selector (key
Down
:), ev);
ObjCMsgSendSuper<void> (&s, @selector (key
Up
:), ev);
}
}
Write
Preview
Loading…
Cancel
Save