summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCr4xy <cr4xy@live.de>2022-09-09 15:10:07 +0200
committerLinus Groh <mail@linusgroh.de>2022-09-09 18:59:04 +0100
commitac6063369464908073d423eec6e68b7dfe54a66c (patch)
tree21bd2a859d0861bcc36d04ef8e4ee1ce71dbc886
parent75ac47dbd8cdc2b86f04e5a6d43bfbeb77c4cdee (diff)
downloadserenity-ac6063369464908073d423eec6e68b7dfe54a66c.zip
Keymap: Rename context menu item "Settings" to "Keyboard Settings"
This is a very small change to improve consistency between applet context menu item names.
-rw-r--r--Userland/Applets/Keymap/KeymapStatusWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/Keymap/KeymapStatusWidget.cpp b/Userland/Applets/Keymap/KeymapStatusWidget.cpp
index 382cd0de83..ecc4269bde 100644
--- a/Userland/Applets/Keymap/KeymapStatusWidget.cpp
+++ b/Userland/Applets/Keymap/KeymapStatusWidget.cpp
@@ -50,7 +50,7 @@ ErrorOr<void> KeymapStatusWidget::refresh_menu()
auto settings_icon = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png"sv));
- m_context_menu->add_action(GUI::Action::create("&Settings",
+ m_context_menu->add_action(GUI::Action::create("Keyboard &Settings",
settings_icon,
[&](auto&) {
GUI::Process::spawn_or_show_error(window(), "/bin/KeyboardSettings"sv);