[coretext] Minor
This commit is contained in:
parent
08acfe0d3a
commit
3eb6a4dbf2
|
@ -693,10 +693,11 @@ retry:
|
||||||
if (unlikely (!attr_string))
|
if (unlikely (!attr_string))
|
||||||
FAIL ("CFAttributedStringCreateMutable failed");
|
FAIL ("CFAttributedStringCreateMutable failed");
|
||||||
CFAttributedStringReplaceString (attr_string, CFRangeMake (0, 0), string_ref);
|
CFAttributedStringReplaceString (attr_string, CFRangeMake (0, 0), string_ref);
|
||||||
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
if (HB_DIRECTION_IS_VERTICAL (buffer->props.direction))
|
||||||
kCTVerticalFormsAttributeName,
|
{
|
||||||
HB_DIRECTION_IS_VERTICAL (buffer->props.direction) ?
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
||||||
kCFBooleanTrue : kCFBooleanFalse);
|
kCTVerticalFormsAttributeName, kCFBooleanTrue);
|
||||||
|
}
|
||||||
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
||||||
kCTFontAttributeName, font_data->ct_font);
|
kCTFontAttributeName, font_data->ct_font);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue