diff options
| author | 2024-05-02 17:23:32 +0200 | |
|---|---|---|
| committer | 2024-05-02 17:23:32 +0200 | |
| commit | aae8e4f5cfabfc3725ac938023fa29a6737a380c (patch) | |
| tree | 2937c1a4d5ec51843f5722a0112e472bea06b194 /widget | |
| parent | ffa6614026cfc0dbdd636ad5a334008c1ee5532d (diff) | |
| download | iced-aae8e4f5cfabfc3725ac938023fa29a6737a380c.tar.gz iced-aae8e4f5cfabfc3725ac938023fa29a6737a380c.tar.bz2 iced-aae8e4f5cfabfc3725ac938023fa29a6737a380c.zip | |
Fix `clippy` lints for new `1.78` stable toolchain
Diffstat (limited to '')
| -rw-r--r-- | widget/src/keyed/column.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/keyed/column.rs b/widget/src/keyed/column.rs index a34ce9e6..fdaadefa 100644 --- a/widget/src/keyed/column.rs +++ b/widget/src/keyed/column.rs @@ -224,7 +224,7 @@ where ); if state.keys != self.keys { - state.keys = self.keys.clone(); + state.keys.clone_from(&self.keys); } } |
