1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

SystemMonitor: Spell process window title as "System Monitor"

This is what we use for the main window and elsewhere.
This commit is contained in:
Linus Groh 2021-05-12 17:52:56 +01:00
parent ff1d3f53c4
commit c8738bbd7e

View file

@ -418,7 +418,7 @@ NonnullRefPtr<GUI::Window> 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<GUI::Widget>();
main_widget.set_fill_with_background_color(true);