Merge pull request #178 from jwilm/fix-x11-poll-events

Fix poll_events on x11 not draining completely
This commit is contained in:
tomaka
2017-05-12 09:10:25 +02:00
committed by GitHub

View File

@@ -126,6 +126,7 @@ impl EventsLoop {
pub fn poll_events<F>(&self, mut callback: F)
where F: FnMut(Event)
{
self.interrupted.store(false, ::std::sync::atomic::Ordering::Relaxed);
let xlib = &self.display.xlib;
let mut xev = unsafe { mem::uninitialized() };