Add window::Event::Resized to iced_native
This commit is contained in:
parent
0a83024505
commit
7ab6ed7ef9
4 changed files with 24 additions and 1 deletions
|
|
@ -1,4 +1,7 @@
|
|||
use crate::input::{keyboard, mouse};
|
||||
use crate::{
|
||||
input::{keyboard, mouse},
|
||||
window,
|
||||
};
|
||||
|
||||
/// A user interface event.
|
||||
///
|
||||
|
|
@ -13,4 +16,7 @@ pub enum Event {
|
|||
|
||||
/// A mouse event
|
||||
Mouse(mouse::Event),
|
||||
|
||||
/// A window event
|
||||
Window(window::Event),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue