Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue where text would truncate sometimes
Summary: TextView will set `setUseLineSpacingFromFallbacks` to `true` for their `StaticLayout`s while we ignore it in this case (`false` default). The docs even recommend setting it to `true`: https://developer.android.com/reference/android/text/StaticLayout.Builder#setUseLineSpacingFromFallbacks(boolean) We set this in the `StaticLayout` builder below, but not up here so lets do that. Changelog: [Internal] Differential Revision: D65171352
- Loading branch information