2019-12-30 19:20:59 +01:00
|
|
|
use crate::{Primitive, Renderer};
|
2019-12-30 21:32:21 +01:00
|
|
|
use iced_native::{space, MouseCursor, Rectangle};
|
2019-12-30 19:20:59 +01:00
|
|
|
|
2019-12-30 21:32:21 +01:00
|
|
|
impl space::Renderer for Renderer {
|
2019-12-30 19:20:59 +01:00
|
|
|
fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
|
|
|
|
|
(Primitive::None, MouseCursor::OutOfBounds)
|
|
|
|
|
}
|
|
|
|
|
}
|