diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-11 13:23:26 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-11 13:23:26 +0100 |
commit | 43d9994d938fc2ba1ec3766df4b90af23a5db2be (patch) | |
tree | bc17907748a1fb2320e9e618bd8bb148b33f7dfd /WindowServer | |
parent | 14c0f18de9adb19bd6676099bca2abe5c5b2f11b (diff) | |
download | serenity-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.cpp | 3 |
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(); |