Merge branch 'master' into fear/linear-gradients

This commit is contained in:
Bingus 2022-10-07 16:58:45 -07:00 committed by GitHub
commit aabc4e87b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 257 additions and 12 deletions

View file

@ -170,6 +170,9 @@ where
iced_native::Event::Mouse(mouse_event) => {
Some(Event::Mouse(mouse_event))
}
iced_native::Event::Touch(touch_event) => {
Some(Event::Touch(touch_event))
}
iced_native::Event::Keyboard(keyboard_event) => {
Some(Event::Keyboard(keyboard_event))
}