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

This commit is contained in:
Andreas Kling 2022-08-14 19:16:35 +02:00
commit 33c13f1bdc
Notes: sideshowbarker 2024-07-17 22:09:47 +09:00

View file

@ -302,7 +302,7 @@ void BrowserWindow::build_menus()
}
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&) {
GUI::Process::spawn_or_show_error(this, "/bin/BrowserSettings"sv);
});