Fix T75965: Scale to Fit Text Box fails with a single word

This commit is contained in:
Campbell Barton 2020-04-23 15:03:47 +10:00
parent e812512e1d
commit 83d9ba341e
Notes: blender-bot 2023-02-14 10:32:59 +01:00
Referenced by issue #75965, Scale to Fit Text Box Option fails when using single word
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;