Remove OutOfBounds variant from MouseCursor

This commit is contained in:
Héctor Ramón Jiménez 2020-04-29 03:11:15 +02:00
parent 85dc07c3b0
commit 59403b6ca8
19 changed files with 18 additions and 22 deletions

View file

@ -3,6 +3,6 @@ use iced_native::{space, MouseCursor, Rectangle};
impl space::Renderer for Renderer {
fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
(Primitive::None, MouseCursor::OutOfBounds)
(Primitive::None, MouseCursor::default())
}
}