FileManager: Change shortcut of Display Settings desktop option

'D' is already used by 'New Directory', let's use 'S'.

Fixes #7350.
This commit is contained in:
Linus Groh 2021-05-21 17:53:35 +01:00
parent 1d959a7b81
commit 95a11d5737
Notes: sideshowbarker 2024-07-18 17:37:39 +09:00

View file

@ -356,7 +356,7 @@ int run_in_desktop_mode([[maybe_unused]] RefPtr<Core::ConfigFile> config)
Desktop::Launcher::open(URL::create_with_file_protocol(directory_view.path()));
});
auto display_properties_action = GUI::Action::create("&Display Settings", {}, Gfx::Bitmap::load_from_file("/res/icons/16x16/app-display-settings.png"), [&](const GUI::Action&) {
auto display_properties_action = GUI::Action::create("Display &Settings", {}, Gfx::Bitmap::load_from_file("/res/icons/16x16/app-display-settings.png"), [&](const GUI::Action&) {
Desktop::Launcher::open(URL::create_with_file_protocol("/bin/DisplaySettings"));
});