From 3d926858c7114118cb42b2b9d301110870d92914 Mon Sep 17 00:00:00 2001 From: --replace-all Date: Sat, 29 Mar 2025 13:56:42 +1300 Subject: [PATCH] Removed bezier_tool from list of examples in the Widget trait docs --- core/src/widget.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/widget.rs b/core/src/widget.rs index 3449cdb4..ff34c723 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -25,18 +25,14 @@ use crate::{Clipboard, Event, Length, Rectangle, Shell, Size, Vector}; /// The repository has some [examples] showcasing how to implement a custom /// widget: /// -/// - [`bezier_tool`], a Paint-like tool for drawing Bézier curves using -/// [`lyon`]. /// - [`custom_widget`], a demonstration of how to build a custom widget that /// draws a circle. /// - [`geometry`], a custom widget showcasing how to draw geometry with the /// `Mesh2D` primitive in [`iced_wgpu`]. /// /// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples -/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.13/examples/bezier_tool /// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.13/examples/custom_widget /// [`geometry`]: https://github.com/iced-rs/iced/tree/0.13/examples/geometry -/// [`lyon`]: https://github.com/nical/lyon /// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.13/wgpu pub trait Widget where