EventsLoop::interrupt
does not interrupt a blocking call to dispatch
during run_forever
#189
Labels
EventsLoop::interrupt
does not interrupt a blocking call to dispatch
during run_forever
#189
Currently, the interrupt method only causes the loop to break when the next event is dispatched. The correct behaviour would be to cause the inner
dispatch
call to immediately stop blocking (it should not wait until the next event is received).@vberger I'm unsure how to do this with wayland, any ideas? Perhaps there's a hint in the old
WindowProxy
code in pre-6.0.0 winit. It'd be nice if we could work this out before working on #187.The text was updated successfully, but these errors were encountered: