mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Avoid cloning the whole paragraph content just for rendering (#9739)
* Avoid cloning the whole paragraph content just for rendering * Fix tests
This commit is contained in:
parent
26b3dc29be
commit
00653c772e
8 changed files with 29 additions and 28 deletions
|
@ -346,7 +346,7 @@ impl Component for Markdown {
|
|||
|
||||
let text = self.parse(Some(&cx.editor.theme));
|
||||
|
||||
let par = Paragraph::new(text)
|
||||
let par = Paragraph::new(&text)
|
||||
.wrap(Wrap { trim: false })
|
||||
.scroll((cx.scroll.unwrap_or_default() as u16, 0));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue