[coretext] Minor

This commit is contained in:
Behdad Esfahbod 2014-08-12 19:10:33 -04:00
parent 08acfe0d3a
commit 3eb6a4dbf2

View File

@ -693,10 +693,11 @@ retry:
if (unlikely (!attr_string))
FAIL ("CFAttributedStringCreateMutable failed");
CFAttributedStringReplaceString (attr_string, CFRangeMake (0, 0), string_ref);
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
kCTVerticalFormsAttributeName,
HB_DIRECTION_IS_VERTICAL (buffer->props.direction) ?
kCFBooleanTrue : kCFBooleanFalse);
if (HB_DIRECTION_IS_VERTICAL (buffer->props.direction))
{
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
kCTVerticalFormsAttributeName, kCFBooleanTrue);
}
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
kCTFontAttributeName, font_data->ct_font);