1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 02:55:08 +00:00

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

This commit is contained in:
Andreas Kling 2021-01-04 23:06:02 +01:00
parent 37f925ffc0
commit 83bbbff753
2 changed files with 5 additions and 5 deletions

View file

@ -532,7 +532,7 @@ void DirectoryView::setup_actions()
}
});
m_open_terminal_action = GUI::Action::create("Open Terminal here...", Gfx::Bitmap::load_from_file("/res/icons/16x16/app-terminal.png"), [&](auto&) {
m_open_terminal_action = GUI::Action::create("Open Terminal here", Gfx::Bitmap::load_from_file("/res/icons/16x16/app-terminal.png"), [&](auto&) {
posix_spawn_file_actions_t spawn_actions;
posix_spawn_file_actions_init(&spawn_actions);
posix_spawn_file_actions_addchdir(&spawn_actions, path().characters());