diff options
Diffstat (limited to 'Services')
-rw-r--r-- | Services/SystemMenu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/SystemMenu/main.cpp b/Services/SystemMenu/main.cpp index 02112635ee..4c08ea8421 100644 --- a/Services/SystemMenu/main.cpp +++ b/Services/SystemMenu/main.cpp @@ -202,7 +202,7 @@ NonnullRefPtr<GUI::Menu> build_system_menu() posix_spawn(&child_pid, "/bin/About", nullptr, nullptr, const_cast<char**>(argv), environ); })); system_menu->add_separator(); - system_menu->add_action(GUI::Action::create("Exit...", [](auto&) { + system_menu->add_action(GUI::Action::create("Exit...", Gfx::Bitmap::load_from_file("/res/icons/16x16/power.png"), [](auto&) { auto command = ShutdownDialog::show(); if (command.size() == 0) |