From cd7037afd5b97260b69dd3c5cfec9b191b325fb5 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sat, 16 Apr 2022 17:10:57 +0100 Subject: [PATCH] SystemMonitor: Remove MakeInspectable::Yes from constructor I think this was left in by mistake. No application should be hard-coded as inspectable. --- Userland/Applications/SystemMonitor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 5017258623..83385035df 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -331,7 +331,7 @@ ErrorOr 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");