diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-04-19 16:49:22 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-04-19 16:51:47 +0200 |
| commit | 5a6330dbfce9ed30c77502b66db843fd72b2d267 (patch) | |
| tree | 3baa8cd117e3b81dbf6d6b6d67520e5bb6d8c7bb /library | |
| parent | 981c578ff9f1ef33a9ab00bc0ecf8fcacabc156f (diff) | |
Fix math hiding once more
Diffstat (limited to 'library')
| -rw-r--r-- | library/src/math/fragment.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/math/fragment.rs b/library/src/math/fragment.rs index 1d13e3b7..b0991630 100644 --- a/library/src/math/fragment.rs +++ b/library/src/math/fragment.rs @@ -233,9 +233,9 @@ impl GlyphFragment { }; let size = Size::new(self.width, self.ascent + self.descent); let mut frame = Frame::new(size); - frame.meta_iter(self.meta); frame.set_baseline(self.ascent); frame.push(Point::with_y(self.ascent), FrameItem::Text(item)); + frame.meta_iter(self.meta); frame } } |
