diff options
author | 2023-09-01 03:25:29 +0200 | |
---|---|---|
committer | 2023-09-01 03:25:29 +0200 | |
commit | ce22d661fa2f4b50d2e7d9ba6bd07e625ec6789e (patch) | |
tree | 6c505719e5f755affd6009df86d67fea22910b14 /graphics/src/text | |
parent | 252a05c7f4013991f94ab1b60f138a4c49fdcbfb (diff) | |
download | iced-ce22d661fa2f4b50d2e7d9ba6bd07e625ec6789e.tar.gz iced-ce22d661fa2f4b50d2e7d9ba6bd07e625ec6789e.tar.bz2 iced-ce22d661fa2f4b50d2e7d9ba6bd07e625ec6789e.zip |
Remove `Clone` implementation for `Paragraph`
Diffstat (limited to 'graphics/src/text')
-rw-r--r-- | graphics/src/text/paragraph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/text/paragraph.rs b/graphics/src/text/paragraph.rs index 7b70376a..f04b1e69 100644 --- a/graphics/src/text/paragraph.rs +++ b/graphics/src/text/paragraph.rs @@ -7,7 +7,7 @@ use crate::text::{self, FontSystem}; use std::fmt; use std::sync::{self, Arc}; -#[derive(Clone, PartialEq, Default)] +#[derive(PartialEq, Default)] pub struct Paragraph(Arc<Internal>); struct Internal { |