mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
Send Awakened event on Android when event loop is woken up (#417)
This commit is contained in:
parent
f3d43016ad
commit
e6fefd5e93
|
@ -3,6 +3,7 @@
|
||||||
- Impl `Hash`, `PartialEq`, and `Eq` for `events::ModifiersState`.
|
- Impl `Hash`, `PartialEq`, and `Eq` for `events::ModifiersState`.
|
||||||
- Implement `MonitorId::get_hidpi_factor` for MacOS.
|
- Implement `MonitorId::get_hidpi_factor` for MacOS.
|
||||||
- Added method `os::macos::MonitorIdExt::get_nsscreen() -> *mut c_void` that gets a `NSScreen` object matching the monitor ID.
|
- Added method `os::macos::MonitorIdExt::get_nsscreen() -> *mut c_void` that gets a `NSScreen` object matching the monitor ID.
|
||||||
|
- Send `Awakened` event on Android when event loop is woken up.
|
||||||
|
|
||||||
# Version 0.11.1 (2018-02-19)
|
# Version 0.11.1 (2018-02-19)
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,9 @@ impl EventsLoop {
|
||||||
event: WindowEvent::Refresh,
|
event: WindowEvent::Refresh,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
android_glue::Event::Wake => {
|
||||||
|
Some(Event::Awakened)
|
||||||
|
}
|
||||||
_ => {
|
_ => {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue