summaryrefslogtreecommitdiffstats
path: root/widget/src/checkbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-01 11:30:01 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-01 11:30:01 +0200
commit6216c513d5e5853bf1d43342094e91a74981f4f2 (patch)
treea11d3e6533485c5811f0f42d4cf5518c30626bdf /widget/src/checkbox.rs
parentc7a4fad4a24dec8536f450d447a9852846f2d711 (diff)
downloadiced-6216c513d5e5853bf1d43342094e91a74981f4f2.tar.gz
iced-6216c513d5e5853bf1d43342094e91a74981f4f2.tar.bz2
iced-6216c513d5e5853bf1d43342094e91a74981f4f2.zip
Use generic `Content` in `Text` to avoid reallocation in `fill_text`
Diffstat (limited to 'widget/src/checkbox.rs')
-rw-r--r--widget/src/checkbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/checkbox.rs b/widget/src/checkbox.rs
index 48f6abf6..225c316d 100644
--- a/widget/src/checkbox.rs
+++ b/widget/src/checkbox.rs
@@ -340,7 +340,7 @@ where
if self.is_checked {
renderer.fill_text(
text::Text {
- content: &code_point.to_string(),
+ content: code_point.to_string(),
font: *font,
size,
line_height: *line_height,