src/hb-graphite2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 66128d3cfb12705530141b5a4bd2706f0cbb9fc5 Author: mhosken <[email protected]> Date: Wed Sep 27 01:29:45 2017 +0700 Fix missing xscale in rtl graphite unpacking (#541) * Fix missing xscale in rtl graphite unpacking * Oops didn't need to mess with yscale diff --git a/src/hb-graphite2.cc b/src/hb-graphite2.cc index 9e0761e6..bc247c60 100644 --- a/src/hb-graphite2.cc +++ b/src/hb-graphite2.cc @@ -389,7 +389,7 @@ _hb_graphite2_shape (hb_shape_plan_t *shape_plan, } else { - curradvx = gr_seg_advance_X(seg); + curradvx = gr_seg_advance_X(seg) * xscale; for (is = gr_seg_first_slot (seg); is; pPos++, info++, is = gr_slot_next_in_segment (is)) { if (info->cluster != currclus) _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
