Merge unnecessary split widget modules

This commit is contained in:
Héctor Ramón Jiménez 2020-05-19 21:00:40 +02:00
parent c2e0c52ce0
commit e618091248
28 changed files with 1032 additions and 1037 deletions

View file

@ -0,0 +1,15 @@
use crate::{Backend, Primitive, Renderer};
use iced_native::mouse;
use iced_native::space;
use iced_native::Rectangle;
pub use iced_native::Space;
impl<B> space::Renderer for Renderer<B>
where
B: Backend,
{
fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
(Primitive::None, mouse::Interaction::default())
}
}