Merge branch 'master' into feature/custom-styling

This commit is contained in:
Héctor Ramón Jiménez 2019-12-31 11:37:41 +01:00
commit e98471d5b6
15 changed files with 225 additions and 12 deletions

View file

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