mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-02-02 14:56:34 +11:00
On Web, wake event loop on request_redraw()
This commit is contained in:
parent
0f64589dba
commit
1805124c54
2 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,7 @@ And please only add new entries to the top of this list, right below the `# Unre
|
|||
# 0.28.3
|
||||
|
||||
- Fix macOS memory leaks.
|
||||
- On Web: fix `Window::request_redraw` not waking the event loop when called from outside the loop.
|
||||
|
||||
# 0.28.2
|
||||
|
||||
|
|
|
@ -157,6 +157,7 @@ impl<T: 'static> Shared<T> {
|
|||
|
||||
pub fn request_redraw(&self, id: WindowId) {
|
||||
self.0.redraw_pending.borrow_mut().insert(id);
|
||||
self.send_events(iter::empty());
|
||||
}
|
||||
|
||||
pub fn init(&self) {
|
||||
|
|
Loading…
Add table
Reference in a new issue