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);