Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Android: Fix inconsistency with fractional TextInput padding
Summary: TextInput rounds padding down with `floor` when measuring. However, it rounds padding up with `ceil` when rendering. This change makes things consistent by moving TextInput's rendering code to use `floor` as well. It looks like this is the intended behavior because commit bdff10b moved measuring from `ceil` to `floor`. It looks like TextInput's rendering code was just overlooked in that commit. **Test plan (required)** Verified TextInput padding works in a test app. Also, my team uses this change in our app. Adam Comella Microsoft Corp. Closes #11003 Differential Revision: D4220855 Pulled By: mkonicek fbshipit-source-id: 95349867ef89c021a8441b383a09052ca0dd569c
- Loading branch information