1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:47:45 +00:00

WindowServer: Don't attempt to make WindowServer inspectable

This commit is contained in:
Andreas Kling 2021-05-17 23:32:37 +02:00
parent 719168a1cd
commit 5f342c41b9

View file

@ -27,7 +27,8 @@
namespace WindowServer { namespace WindowServer {
EventLoop::EventLoop() 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_wm_server(Core::LocalServer::construct())
{ {
m_keyboard_fd = open("/dev/keyboard0", O_RDONLY | O_NONBLOCK | O_CLOEXEC); m_keyboard_fd = open("/dev/keyboard0", O_RDONLY | O_NONBLOCK | O_CLOEXEC);