mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
TextEditor: Change 'Find regex' shortcut to Ctrl+Shift+R
So there's not conflict with Vim Emulator's Ctrl+R redo.
This commit is contained in:
committed by
Andreas Kling
parent
32c319ba81
commit
1c17ecdeb7
@@ -133,7 +133,7 @@ TextEditorWidget::TextEditorWidget()
|
||||
}
|
||||
});
|
||||
|
||||
m_find_regex_action = GUI::Action::create("Find regex", { Mod_Ctrl, Key_R }, [&](auto&) {
|
||||
m_find_regex_action = GUI::Action::create("Find regex", { Mod_Ctrl | Mod_Shift, Key_R }, [&](auto&) {
|
||||
m_find_regex_button->set_checked(!m_find_regex_button->is_checked());
|
||||
m_find_use_regex = m_find_regex_button->is_checked();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user