1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibCore: Make all processes opt out of InspectorServer by default

This functionality, while neat, isn't really something you need enabled
all the time. Let's make it opt-in instead. Pass MakeInspectable::Yes
to the Core::EventLoop constructor if you want your program to become
inspectable.
This commit is contained in:
Andreas Kling 2021-05-22 23:26:51 +02:00
parent 76a07b31e4
commit c9e849a968
4 changed files with 4 additions and 5 deletions

View file

@ -27,8 +27,7 @@
namespace WindowServer {
EventLoop::EventLoop()
: m_event_loop(Core::EventLoop::MakeInspectable::No)
, m_window_server(Core::LocalServer::construct())
: m_window_server(Core::LocalServer::construct())
, m_wm_server(Core::LocalServer::construct())
{
m_keyboard_fd = open("/dev/keyboard0", O_RDONLY | O_NONBLOCK | O_CLOEXEC);