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:
parent
37f925ffc0
commit
83bbbff753
2 changed files with 5 additions and 5 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue