Rename Empty widget to Space
This commit is contained in:
parent
8426bf953c
commit
3a327e08e9
8 changed files with 69 additions and 69 deletions
|
|
@ -1,12 +1,12 @@
|
|||
mod button;
|
||||
mod checkbox;
|
||||
mod column;
|
||||
mod empty;
|
||||
mod image;
|
||||
mod radio;
|
||||
mod row;
|
||||
mod scrollable;
|
||||
mod slider;
|
||||
mod space;
|
||||
mod text;
|
||||
mod text_input;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use crate::{Primitive, Renderer};
|
||||
use iced_native::{empty, MouseCursor, Rectangle};
|
||||
use iced_native::{space, MouseCursor, Rectangle};
|
||||
|
||||
impl empty::Renderer for Renderer {
|
||||
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