diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/solar_system/src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/examples/solar_system/src/main.rs b/examples/solar_system/src/main.rs index 73ddb01e..6f38f480 100644 --- a/examples/solar_system/src/main.rs +++ b/examples/solar_system/src/main.rs @@ -10,14 +10,14 @@ use iced::application;  use iced::executor;  use iced::theme::{self, Theme};  use iced::time; -use iced::widget::canvas::{self, stroke, Cursor, Path, Stroke}; +use iced::widget::canvas; +use iced::widget::canvas::{Cursor, Path, Stroke, Fill, fill, Gradient, stroke};  use iced::window;  use iced::{      Application, Color, Command, Element, Length, Point, Rectangle, Settings,      Size, Subscription, Vector,  }; -use crate::canvas::{fill, Fill, Gradient};  use std::time::Instant;  pub fn main() -> iced::Result { | 
