diff options
author | Mo | 2024-02-27 17:24:05 +0000 |
---|---|---|
committer | GitHub | 2024-02-27 17:24:05 +0000 |
commit | 00653c772e7df6f68071d1cb1c92bfe9ca4876f9 (patch) | |
tree | ab89132d7fc7d174216264bd367942e9589b2269 /helix-term/src/ui/text.rs | |
parent | 26b3dc29be886c5a2ed1a5caaaf09eb730829c3e (diff) |
Avoid cloning the whole paragraph content just for rendering (#9739)
* Avoid cloning the whole paragraph content just for rendering
* Fix tests
Diffstat (limited to 'helix-term/src/ui/text.rs')
-rw-r--r-- | helix-term/src/ui/text.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/text.rs b/helix-term/src/ui/text.rs index a379536f..a9c99562 100644 --- a/helix-term/src/ui/text.rs +++ b/helix-term/src/ui/text.rs @@ -33,7 +33,7 @@ impl Component for Text { fn render(&mut self, area: Rect, surface: &mut Surface, _cx: &mut Context) { use tui::widgets::{Paragraph, Widget, Wrap}; - let par = Paragraph::new(self.contents.clone()).wrap(Wrap { trim: false }); + let par = Paragraph::new(&self.contents).wrap(Wrap { trim: false }); // .scroll(x, y) offsets par.render(area, surface); |