summaryrefslogtreecommitdiff
path: root/WindowServer
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-11 13:23:26 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-11 13:23:26 +0100
commit43d9994d938fc2ba1ec3766df4b90af23a5db2be (patch)
treebc17907748a1fb2320e9e618bd8bb148b33f7dfd /WindowServer
parent14c0f18de9adb19bd6676099bca2abe5c5b2f11b (diff)
downloadserenity-43d9994d938fc2ba1ec3766df4b90af23a5db2be.zip
WindowServer: Oops, we have to keep processing WSMessages with !m_process.
Otherwise we'll never handle WM_DestroyWindow and the window sticks around.
Diffstat (limited to 'WindowServer')
-rw-r--r--WindowServer/WSWindow.cpp3
1 files changed, 0 insertions, 3 deletions
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();