From d06e6bfb5111c1f2d2fd43c10a0c69870539742f Mon Sep 17 00:00:00 2001 From: Olivier Pinon Date: Fri, 10 Dec 2021 22:53:00 +0100 Subject: Lower text::Renderer's Font bound from Copy to Clone --- native/src/widget/radio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'native/src/widget/radio.rs') 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, -- cgit