summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/canvas/path/builder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/src/widget/canvas/path/builder.rs')
-rw-r--r--graphics/src/widget/canvas/path/builder.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/widget/canvas/path/builder.rs b/graphics/src/widget/canvas/path/builder.rs
index 5ce0e02c..d04dbdde 100644
--- a/graphics/src/widget/canvas/path/builder.rs
+++ b/graphics/src/widget/canvas/path/builder.rs
@@ -1,14 +1,14 @@
use crate::canvas::path::{arc, Arc, Path};
use iced_native::{Point, Size};
-use lyon::path::builder::{Build, FlatPathBuilder, PathBuilder, SvgBuilder};
+use lyon::path::builder::SvgPathBuilder;
/// A [`Path`] builder.
///
/// Once a [`Path`] is built, it can no longer be mutated.
#[allow(missing_debug_implementations)]
pub struct Builder {
- raw: lyon::path::builder::SvgPathBuilder<lyon::path::Builder>,
+ raw: lyon::path::builder::WithSvg<lyon::path::path::Builder>,
}
impl Builder {