Skip to content

Commit

Permalink
Fix enableFocusRing also enabled for multiline textFields (facebook#1301
Browse files Browse the repository at this point in the history
  • Loading branch information
chiuam authored Jul 28, 2022
1 parent 8a78c92 commit a320148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ - (void)setReactBorderInsets:(UIEdgeInsets)reactBorderInsets
- (void)setEnableFocusRing:(BOOL)enableFocusRing {
[super setEnableFocusRing:enableFocusRing];
if ([_scrollView respondsToSelector:@selector(setEnableFocusRing:)]) {
[_scrollView setEnableFocusRing:YES];
[_scrollView setEnableFocusRing:enableFocusRing];
}
}

Expand Down

0 comments on commit a320148

Please sign in to comment.