WindowServer: Don't attempt to make WindowServer inspectable

This commit is contained in:
Andreas Kling 2021-05-17 23:32:37 +02:00
commit 5f342c41b9
Notes: sideshowbarker 2024-07-18 17:54:01 +09:00

View file

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