1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

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
parent 14c0f18de9
commit 43d9994d93

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();