diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-11 13:59:40 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-11 13:59:40 +0200 |
commit | d2a8f4d33dfafc850f90b4659ce0d971c2689ad2 (patch) | |
tree | b5fc7d78b5ec9b92494a65986b6bb73f6d5fcbc8 /editor/code_editor.h | |
parent | f21053d189719dfdec8637513c20fcda9c363ed0 (diff) | |
parent | ff0de4e220a1f1758a7d592e433c3e2ed9803775 (diff) | |
download | redot-engine-d2a8f4d33dfafc850f90b4659ce0d971c2689ad2.tar.gz |
Merge pull request #61776 from Rindbee/fix-code-editor-search
Fix some bugs about search in code editor
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index c3279e8764..ded7518287 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -92,7 +92,7 @@ class FindReplaceBar : public HBoxContainer { bool replace_all_mode = false; bool preserve_cursor = false; - void _get_search_from(int &r_line, int &r_col); + void _get_search_from(int &r_line, int &r_col, bool p_is_searching_next = false); void _update_results_count(); void _update_matches_label(); |