diff options
author | Max Wipfli <mail@maxwipfli.ch> | 2021-05-21 18:51:06 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-21 18:41:28 +0100 |
commit | 229414b0020e6980984715626131081d62769c1f (patch) | |
tree | 1095a9d7c83db6ff258f7b46af5b4dfaf28db912 /Userland/Applications/IRCClient/IRCAppWindow.cpp | |
parent | f27e75ac0cdbcda6c8e748f16feb308211aec6d9 (diff) | |
download | serenity-229414b0020e6980984715626131081d62769c1f.zip |
Applications: Use titlecase and distinct underlined characters in menus
This changes (context) menus across the system to conform to titlecase
capitalization and to not underline the same character twice (for
accessing actions with Alt).
Diffstat (limited to 'Userland/Applications/IRCClient/IRCAppWindow.cpp')
-rw-r--r-- | Userland/Applications/IRCClient/IRCAppWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/IRCClient/IRCAppWindow.cpp b/Userland/Applications/IRCClient/IRCAppWindow.cpp index 5d84b37ab1..c769299db0 100644 --- a/Userland/Applications/IRCClient/IRCAppWindow.cpp +++ b/Userland/Applications/IRCClient/IRCAppWindow.cpp @@ -226,7 +226,7 @@ void IRCAppWindow::setup_actions() m_client->handle_kick_user_action(window->channel().name(), nick_value, reason_value.characters()); }); - m_cycle_channel_action = GUI::Action::create("Cycle Channel", [this](auto&) { + m_cycle_channel_action = GUI::Action::create("C&ycle Channel", [this](auto&) { auto* window = m_client->current_window(); if (!window || window->type() != IRCWindow::Type::Channel) { return; |