Merge branch 'master' into feature/custom-styling
This commit is contained in:
commit
e98471d5b6
15 changed files with 225 additions and 12 deletions
|
|
@ -7,6 +7,7 @@ mod radio;
|
|||
mod row;
|
||||
mod scrollable;
|
||||
mod slider;
|
||||
mod space;
|
||||
mod text;
|
||||
mod text_input;
|
||||
|
||||
|
|
|
|||
8
wgpu/src/renderer/widget/space.rs
Normal file
8
wgpu/src/renderer/widget/space.rs
Normal 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)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue