diff --git a/Libraries/LibCore/CEventLoop.cpp b/Libraries/LibCore/CEventLoop.cpp index e38c2b2154..090f2a20af 100644 --- a/Libraries/LibCore/CEventLoop.cpp +++ b/Libraries/LibCore/CEventLoop.cpp @@ -139,6 +139,7 @@ void CEventLoop::pump(WaitMode mode) auto rejigged_event_queue = move(events); rejigged_event_queue.append(move(m_queued_events)); m_queued_events = move(rejigged_event_queue); + return; } } }