WindowServer: Oops, we have to keep processing WSMessages with !m_process.

Otherwise we'll never handle WM_DestroyWindow and the window sticks around.
This commit is contained in:
Andreas Kling 2019-02-11 13:23:26 +01:00
commit 43d9994d93
Notes: sideshowbarker 2024-07-19 15:47:16 +09:00

View file

@ -76,9 +76,6 @@ void WSWindow::on_message(WSMessage& message)
return;
}
if (!m_process)
return;
GUI_Event gui_event;
gui_event.window_id = window_id();