Fix case where bidi detects opposite orientation from rustybuzz

This commit is contained in:
Jeremy Soller 2022-10-07 14:54:40 -06:00
parent 9595308c25
commit d71c142d68
No known key found for this signature in database
GPG key ID: 87F211AF2BE4C2FE
2 changed files with 47 additions and 31 deletions

View file

@ -103,6 +103,7 @@ impl<'a> FontShapeGlyph<'a> {
}
pub struct FontShapeWord<'a> {
pub rtl: bool,
pub glyphs: Vec<FontShapeGlyph<'a>>,
}