Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update RCTView.m
  • Loading branch information
Saadnajmi authored Sep 19, 2022
commit ac202695ccf318b4a3180ff993e719f40867416c
2 changes: 1 addition & 1 deletion React/Views/RCTView.m
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ - (void)mouseUp:(NSEvent *)event

- (BOOL)acceptsFirstResponder
{
return ([self focusable] && [NSApp isFullKeyboardAccessEnabled]) || [super acceptsFirstResponder];
return [self focusable] || [super acceptsFirstResponder];
}

- (void)updateTrackingAreas
Expand Down