From c8738bbd7e56f6298981cc2f0195bb460c4ad65a Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 12 May 2021 17:52:56 +0100 Subject: SystemMonitor: Spell process window title as "System Monitor" This is what we use for the main window and elsewhere. --- Userland/Applications/SystemMonitor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Applications') diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index b66ea3a44e..827edbf454 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -418,7 +418,7 @@ NonnullRefPtr build_process_window(pid_t pid) { auto window = GUI::Window::construct(); window->resize(480, 360); - window->set_title(String::formatted("PID {} - SystemMonitor", pid)); + window->set_title(String::formatted("PID {} - System Monitor", pid)); auto& main_widget = window->set_main_widget(); main_widget.set_fill_with_background_color(true); -- cgit v1.2.3