1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 02:27:43 +00:00

SystemMonitor: Remove MakeInspectable::Yes from constructor

I think this was left in by mistake. No application should be hard-coded
as inspectable.
This commit is contained in:
Sam Atkins 2022-04-16 17:10:57 +01:00 committed by Andreas Kling
parent f240def414
commit cd7037afd5

View file

@ -331,7 +331,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::pledge("stdio thread proc recvfd sendfd rpath exec unix")); TRY(Core::System::pledge("stdio thread proc recvfd sendfd rpath exec unix"));
auto app = TRY(GUI::Application::try_create(arguments, Core::EventLoop::MakeInspectable::Yes)); auto app = TRY(GUI::Application::try_create(arguments));
Config::pledge_domain("SystemMonitor"); Config::pledge_domain("SystemMonitor");