diff options
author | 2021-09-01 13:53:18 +0700 | |
---|---|---|
committer | 2021-09-01 13:53:18 +0700 | |
commit | b7b7741578257bbf6a8b873c360182e2c9b920ab (patch) | |
tree | 1a1cb723b156b25c5273c458aa9112b85ead0c8b /graphics/src/widget/canvas/path.rs | |
parent | dcd362813af45efbde84db940cfe6f6fbf40ca7b (diff) | |
parent | 61dc9defada9a001bfd177b8e67c64add555d96a (diff) | |
download | iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.tar.gz iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.tar.bz2 iced-b7b7741578257bbf6a8b873c360182e2c9b920ab.zip |
Merge pull request #683 from hecrj/lyon-0.17
Update `lyon` to `0.17` in `iced_graphics`
Diffstat (limited to 'graphics/src/widget/canvas/path.rs')
-rw-r--r-- | graphics/src/widget/canvas/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/widget/canvas/path.rs b/graphics/src/widget/canvas/path.rs index 6de19321..4e4fd734 100644 --- a/graphics/src/widget/canvas/path.rs +++ b/graphics/src/widget/canvas/path.rs @@ -62,7 +62,7 @@ impl Path { transform: &lyon::math::Transform, ) -> Path { Path { - raw: self.raw.transformed(transform), + raw: self.raw.clone().transformed(transform), } } } |