We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f8b2e commit 02dd55eCopy full SHA for 02dd55e
packages/react-native/Libraries/Text/TextInput/Multiline/RCTUITextView.mm
@@ -587,7 +587,7 @@ - (void)deleteBackward {
587
}
588
#else // [macOS
589
- (BOOL)performKeyEquivalent:(NSEvent *)event {
590
- if (!self.hasMarkedText && ![self.textInputDelegate textInputShouldHandleKeyEvent:event]) {
+ if (self.window.firstResponder == self && !self.hasMarkedText && ![self.textInputDelegate textInputShouldHandleKeyEvent:event]) {
591
return YES;
592
593
0 commit comments