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:
commit
d573da55b0
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue