1
Fork 0
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:
Andreas Kling 2020-12-30 10:59:45 +01:00
parent 5e46a911ae
commit db086ef9cc

View file

@ -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);