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
Notes: sideshowbarker 2024-07-17 11:43:23 +09:00

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"));
auto app = TRY(GUI::Application::try_create(arguments, Core::EventLoop::MakeInspectable::Yes));
auto app = TRY(GUI::Application::try_create(arguments));
Config::pledge_domain("SystemMonitor");