0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 12:01:19 -05:00

Merge pull request #6179 from penpot/elenatorro-10530-fix-paragraph

🐛 Revert offset change to fix paragraph rendering
This commit is contained in:
Elena Torró 2025-03-27 17:29:50 +01:00 committed by GitHub
commit d573da55b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,10 +2,12 @@ use super::{RenderState, Shape, SurfaceId};
use crate::shapes::TextContent;
pub fn render(render_state: &mut RenderState, shape: &Shape, text: &TextContent) {
let mut offset_y = 0.0;
for mut skia_paragraph in text.to_paragraphs(&render_state.fonts().font_collection()) {
skia_paragraph.layout(shape.width());
let xy = (shape.selrect().x(), shape.selrect.y());
let xy = (shape.selrect().x(), shape.selrect.y() + offset_y);
skia_paragraph.paint(render_state.surfaces.canvas(SurfaceId::Fills), xy);
offset_y += skia_paragraph.height();
}
}