diff --git a/ChangeLog b/ChangeLog index 917e08b54..6026a5979 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-06-20 Werner Lemberg + + * src/autofit/aflatin.c (af_latin_metrics_scale_dim): Fix change + from 2011-05-04. + 2011-06-18 Werner Lemberg Update license documentation. diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c index c24043f70..54fcf7f0a 100644 --- a/src/autofit/aflatin.c +++ b/src/autofit/aflatin.c @@ -665,6 +665,9 @@ if ( delta1 < 0 ) delta2 = -delta2; + blue->ref.fit = FT_PIX_ROUND( blue->ref.cur ); + blue->shoot.fit = blue->ref.fit + delta2; + #else /* simplified version due to abs(dist) <= 48 */ @@ -682,10 +685,10 @@ if ( dist < 0 ) delta2 = -delta2; -#endif - blue->ref.fit = FT_PIX_ROUND( blue->ref.cur ); - blue->shoot.fit = blue->ref.fit + delta2; + blue->shoot.fit = blue->ref.fit - delta2; + +#endif blue->flags |= AF_LATIN_BLUE_ACTIVE; }