diff options
author | 2024-04-01 11:30:01 +0200 | |
---|---|---|
committer | 2024-04-01 11:30:01 +0200 | |
commit | 6216c513d5e5853bf1d43342094e91a74981f4f2 (patch) | |
tree | a11d3e6533485c5811f0f42d4cf5518c30626bdf /widget/src/pick_list.rs | |
parent | c7a4fad4a24dec8536f450d447a9852846f2d711 (diff) | |
download | iced-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/pick_list.rs')
-rw-r--r-- | widget/src/pick_list.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widget/src/pick_list.rs b/widget/src/pick_list.rs index 801e792b..edccfdaa 100644 --- a/widget/src/pick_list.rs +++ b/widget/src/pick_list.rs @@ -479,7 +479,7 @@ where renderer.fill_text( Text { - content: &code_point.to_string(), + content: code_point.to_string(), size, line_height, font, @@ -502,7 +502,7 @@ where let label = selected.map(ToString::to_string); - if let Some(label) = label.as_deref().or(self.placeholder.as_deref()) { + if let Some(label) = label.or_else(|| self.placeholder.clone()) { let text_size = self.text_size.unwrap_or_else(|| renderer.default_size()); |