LibCore: Cancel jobs on event loop exit

This important feature was regressed with the recent architectural
change.
This commit is contained in:
kleines Filmröllchen 2023-05-11 21:58:40 +02:00 committed by Andrew Kaster
commit 7704d89496
Notes: sideshowbarker 2024-07-17 06:29:49 +09:00
3 changed files with 12 additions and 0 deletions

View file

@ -48,6 +48,7 @@ EventLoop& EventLoop::current()
void EventLoop::quit(int code)
{
ThreadEventQueue::current().cancel_all_pending_jobs();
m_impl->quit(code);
}