diff options
author | 2021-12-10 22:53:00 +0100 | |
---|---|---|
committer | 2021-12-10 23:34:02 +0100 | |
commit | d06e6bfb5111c1f2d2fd43c10a0c69870539742f (patch) | |
tree | d1c7095e32254305c53e9f03f8a3da9510d80275 /native/src/widget/radio.rs | |
parent | a7bcd65bb82a2640e10cbe25bf24bc003d059857 (diff) | |
download | iced-d06e6bfb5111c1f2d2fd43c10a0c69870539742f.tar.gz iced-d06e6bfb5111c1f2d2fd43c10a0c69870539742f.tar.bz2 iced-d06e6bfb5111c1f2d2fd43c10a0c69870539742f.zip |
Lower text::Renderer's Font bound from Copy to Clone
Diffstat (limited to 'native/src/widget/radio.rs')
-rw-r--r-- | native/src/widget/radio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs index 523773bd..aa7019d4 100644 --- a/native/src/widget/radio.rs +++ b/native/src/widget/radio.rs @@ -279,7 +279,7 @@ where style, label_layout, &self.label, - self.font, + self.font.clone(), self.text_size, self.text_color, alignment::Horizontal::Left, |