From 43d9994d938fc2ba1ec3766df4b90af23a5db2be Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 11 Feb 2019 13:23:26 +0100 Subject: WindowServer: Oops, we have to keep processing WSMessages with !m_process. Otherwise we'll never handle WM_DestroyWindow and the window sticks around. --- WindowServer/WSWindow.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'WindowServer') diff --git a/WindowServer/WSWindow.cpp b/WindowServer/WSWindow.cpp index 517bbb27fa..476eb3c884 100644 --- a/WindowServer/WSWindow.cpp +++ b/WindowServer/WSWindow.cpp @@ -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(); -- cgit v1.2.3