diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-17 23:32:37 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-17 23:32:37 +0200 |
commit | 5f342c41b9d01416aac8998e86054d68699b3e62 (patch) | |
tree | d58c86c367a9993aaaaa9bbe19940aaefc25191f /Userland | |
parent | 719168a1cdbb524da47f6fe67bfbda47a454edc5 (diff) | |
download | serenity-5f342c41b9d01416aac8998e86054d68699b3e62.zip |
WindowServer: Don't attempt to make WindowServer inspectable
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Services/WindowServer/EventLoop.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/EventLoop.cpp b/Userland/Services/WindowServer/EventLoop.cpp index 5bc5b4a062..a79fbd4d58 100644 --- a/Userland/Services/WindowServer/EventLoop.cpp +++ b/Userland/Services/WindowServer/EventLoop.cpp @@ -27,7 +27,8 @@ namespace WindowServer { EventLoop::EventLoop() - : m_window_server(Core::LocalServer::construct()) + : m_event_loop(Core::EventLoop::MakeInspectable::No) + , m_window_server(Core::LocalServer::construct()) , m_wm_server(Core::LocalServer::construct()) { m_keyboard_fd = open("/dev/keyboard0", O_RDONLY | O_NONBLOCK | O_CLOEXEC); |