Skip to content

Commit

Permalink
Fix enableFocusRing also enabled for multiline textFields (#1301) (#1304
Browse files Browse the repository at this point in the history
)
  • Loading branch information
chiuam authored Jul 28, 2022
1 parent ed23a53 commit 936c0c3
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 936c0c3

Please sign in to comment.