From 5f342c41b9d01416aac8998e86054d68699b3e62 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 17 May 2021 23:32:37 +0200 Subject: [PATCH] WindowServer: Don't attempt to make WindowServer inspectable --- Userland/Services/WindowServer/EventLoop.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);