Rename MouseCursor to mouse::Interaction
This commit is contained in:
parent
d4c4198f72
commit
98bc8cf2a7
35 changed files with 170 additions and 171 deletions
|
|
@ -55,8 +55,8 @@ mod runtime;
|
|||
mod user_interface;
|
||||
|
||||
pub use iced_core::{
|
||||
Align, Background, Color, Font, HorizontalAlignment, Length, MouseCursor,
|
||||
Point, Rectangle, Size, Vector, VerticalAlignment,
|
||||
Align, Background, Color, Font, HorizontalAlignment, Length, Point,
|
||||
Rectangle, Size, Vector, VerticalAlignment,
|
||||
};
|
||||
pub use iced_futures::{executor, futures, Command};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use crate::MouseCursor;
|
||||
use crate::mouse;
|
||||
|
||||
use raw_window_handle::HasRawWindowHandle;
|
||||
|
||||
|
|
@ -51,5 +51,5 @@ pub trait Backend: Sized {
|
|||
output: &<Self::Renderer as crate::Renderer>::Output,
|
||||
scale_factor: f64,
|
||||
overlay: &[T],
|
||||
) -> MouseCursor;
|
||||
) -> mouse::Interaction;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue