Skip to content

Commit 89418c6

Browse files
committed
style: fix some weird auto-imports
1 parent 346494b commit 89418c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

widget/src/svg.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use crate::core::widget::Tree;
2323
use crate::core::window;
2424
use crate::core::{
2525
Color, ContentFit, Element, Event, Layout, Length, Point, Rectangle,
26-
Rotation, Size, Theme, Vector, Widget,
26+
Rotation, Size, Theme, Vector, Widget,Shell,Clipboard
2727
};
2828

2929
use std::path::PathBuf;
@@ -201,12 +201,12 @@ where
201201
fn update(
202202
&mut self,
203203
_state: &mut Tree,
204-
event: &iced_runtime::core::Event,
204+
event: &Event,
205205
layout: Layout<'_>,
206206
cursor: mouse::Cursor,
207207
_renderer: &Renderer,
208-
_clipboard: &mut dyn iced_runtime::core::Clipboard,
209-
shell: &mut iced_runtime::core::Shell<'_, Message>,
208+
_clipboard: &mut dyn Clipboard,
209+
shell: &mut Shell<'_, Message>,
210210
_viewport: &Rectangle,
211211
) {
212212
let current_status = if cursor.is_over(layout.bounds()) {

0 commit comments

Comments
 (0)