mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:28:12 +00:00
TextEditor: Change Find/Replace shortcut to Ctrl+Shift+F
This commit is contained in:
parent
c476ca2bd6
commit
a97768001b
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ MainWidget::MainWidget()
|
|||
});
|
||||
m_vim_emulation_setting_action->set_checked(false);
|
||||
|
||||
m_find_replace_action = GUI::Action::create("&Find/Replace...", { Mod_Ctrl, Key_F }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/find.png"sv).release_value_but_fixme_should_propagate_errors(), [this](auto&) {
|
||||
m_find_replace_action = GUI::Action::create("&Find/Replace...", { Mod_Ctrl | Mod_Shift, Key_F }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/find.png"sv).release_value_but_fixme_should_propagate_errors(), [this](auto&) {
|
||||
m_find_replace_widget->set_visible(true);
|
||||
m_find_widget->set_visible(true);
|
||||
m_replace_widget->set_visible(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue