1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 20:55:07 +00:00

HackStudio: Correct use of ellipsis (...) in menu items

This commit is contained in:
Andreas Kling 2021-01-04 23:06:47 +01:00
parent 83bbbff753
commit f2f4695bdd

View file

@ -873,7 +873,7 @@ void HackStudioWidget::create_view_menubar(GUI::MenuBar& menubar)
auto hide_action_tabs_action = GUI::Action::create("Hide action tabs", { Mod_Ctrl | Mod_Shift, Key_X }, [this](auto&) {
hide_action_tabs();
});
auto open_locator_action = GUI::Action::create("Open Locator...", { Mod_Ctrl, Key_K }, [this](auto&) {
auto open_locator_action = GUI::Action::create("Open locator", { Mod_Ctrl, Key_K }, [this](auto&) {
m_locator->open();
});