diff options
author | 2024-01-09 06:47:52 +0100 | |
---|---|---|
committer | 2024-01-10 10:01:50 +0100 | |
commit | ecf571dfeb033f3768fccfb06bc9380e59281df3 (patch) | |
tree | d8296254685088fa26c2b0a802dfd6f49903220c /widget | |
parent | 67277fbf93f4c180eff67bdc4c9dcf84a54d3425 (diff) | |
download | iced-ecf571dfeb033f3768fccfb06bc9380e59281df3.tar.gz iced-ecf571dfeb033f3768fccfb06bc9380e59281df3.tar.bz2 iced-ecf571dfeb033f3768fccfb06bc9380e59281df3.zip |
Fix unnecessary `into` call in `Container::new`
Diffstat (limited to '')
-rw-r--r-- | widget/src/container.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/container.rs b/widget/src/container.rs index c98de41c..ecc5c651 100644 --- a/widget/src/container.rs +++ b/widget/src/container.rs @@ -67,7 +67,7 @@ where horizontal_alignment: alignment::Horizontal::Left, vertical_alignment: alignment::Vertical::Top, style: Default::default(), - content: content.into(), + content, } } |