fix compile after pcwalton's multi-event handling PR

This commit is contained in:
Mike Blumenkrantz 2015-05-21 20:50:35 -04:00
parent f53fc1900d
commit 25f87aa8ab

View file

@ -206,11 +206,16 @@ pub fn update() {
if browser.downcast().callback_executed.get() == false { if browser.downcast().callback_executed.get() == false {
browser_callback_after_created(browser.clone()); browser_callback_after_created(browser.clone());
} }
let event = match browser.downcast().window { let mut events = match browser.downcast().window {
Some(ref win) => win.wait_events(), Some(ref win) => win.wait_events(),
None => WindowEvent::Idle None => vec![WindowEvent::Idle]
}; };
browser.send_window_event(event); loop {
match events.pop() {
Some(event) => browser.send_window_event(event),
None => break
}
}
} }
}); });
} }