mirror of
https://github.com/RGBCube/serenity
synced 2025-07-22 22:37:40 +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:
parent
ff1d3f53c4
commit
c8738bbd7e
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ NonnullRefPtr<GUI::Window> build_process_window(pid_t pid)
|
||||||
{
|
{
|
||||||
auto window = GUI::Window::construct();
|
auto window = GUI::Window::construct();
|
||||||
window->resize(480, 360);
|
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>();
|
auto& main_widget = window->set_main_widget<GUI::Widget>();
|
||||||
main_widget.set_fill_with_background_color(true);
|
main_widget.set_fill_with_background_color(true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue