diff options
author | Linus Groh <mail@linusgroh.de> | 2022-03-17 23:20:49 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-18 01:10:16 +0100 |
commit | c19486172d7d6183ee7c25c1c95d58eba765eb48 (patch) | |
tree | ce08ef49ff6a870084b459f04a2e4f3cb2854bda /Userland/Applications/Browser | |
parent | fd60c9fac7150412092f465fb08d3e50bfd0f551 (diff) | |
download | serenity-c19486172d7d6183ee7c25c1c95d58eba765eb48.zip |
Applications+Games: Drop ellipsis from settings action
There is no second step to complete after activating this action.
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index e6745fe39e..f01c03fdac 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -284,7 +284,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").release_value_but_fixme_should_propagate_errors(), + auto open_settings_action = GUI::Action::create("&Settings", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png").release_value_but_fixme_should_propagate_errors(), [](auto&) { Core::Process::spawn("/bin/BrowserSettings"); }); |