mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +00:00
Terminal: Make the find shortcut Ctrl+Shift+F
Let's leave all the Ctrl+Letter shortcuts for the TTY itself.
This commit is contained in:
parent
5e46a911ae
commit
db086ef9cc
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ int main(int argc, char** argv)
|
|||
edit_menu.add_action(terminal.copy_action());
|
||||
edit_menu.add_action(terminal.paste_action());
|
||||
edit_menu.add_separator();
|
||||
edit_menu.add_action(GUI::Action::create("Find", { Mod_Ctrl, Key_F }, Gfx::Bitmap::load_from_file("/res/icons/16x16/find.png"),
|
||||
edit_menu.add_action(GUI::Action::create("Find", { Mod_Ctrl | Mod_Shift, Key_F }, Gfx::Bitmap::load_from_file("/res/icons/16x16/find.png"),
|
||||
[&](auto&) {
|
||||
if (!find_window) {
|
||||
find_window = create_find_window(terminal);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue