Merge branch 'blender-v2.83-release'

This commit is contained in:
Campbell Barton 2020-04-23 15:09:54 +10:00
commit 6489f5a8ec
1 changed files with 2 additions and 2 deletions

View File

@ -1501,9 +1501,9 @@ static bool vfont_to_curve(Object *ob,
}
else if (tb_scale.h == 0.0f) {
/* This is a horizontal overflow. */
if (lnr > 1) {
if (longest_line_length != 0.0f) {
/* We make sure longest line before it broke can fit here. */
float scale_to_fit = tb_scale.w / (longest_line_length);
float scale_to_fit = tb_scale.w / longest_line_length;
scale_to_fit -= FLT_EPSILON;
iter_data->scale_to_fit = scale_to_fit;