1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

Browser: Rename menu item from "Settings" to "Browser Settings"

This commit is contained in:
Andreas Kling 2022-08-14 19:16:35 +02:00
parent 24956ba65d
commit 33c13f1bdc

View file

@ -302,7 +302,7 @@ void BrowserWindow::build_menus()
} }
settings_menu.add_separator(); settings_menu.add_separator();
auto open_settings_action = GUI::Action::create("&Settings", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png"sv).release_value_but_fixme_should_propagate_errors(), auto open_settings_action = GUI::Action::create("Browser &Settings", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png"sv).release_value_but_fixme_should_propagate_errors(),
[this](auto&) { [this](auto&) {
GUI::Process::spawn_or_show_error(this, "/bin/BrowserSettings"sv); GUI::Process::spawn_or_show_error(this, "/bin/BrowserSettings"sv);
}); });