EventLoopWindowTarget::exit() doesn't immediately stop the event loop #3322
Replies: 1 comment
-
Moved to #3323. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I didn't file this as an issue because I don't know if I missed something or if this is the intended behaviour. When I call
EventLoopWindowTarget::exit()
in my event loop after all windows have been closed, on Windows, I would receive another bunch of events after that, including anotherAboutToWait
event where I draw a frame. On macOS aNewEvents(WaitCancelled)
event still gets emitted but that doesn't affect anything because I don't handle that event yet. Why is this?Beta Was this translation helpful? Give feedback.
All reactions