diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-15 13:41:05 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-15 13:41:05 +0200 |
commit | 5b681dbe7f0ada367078ef4e5e4c349c3859c88d (patch) | |
tree | b4dd78f911fd3cf1ead271ad2e60c79dbb0de928 /editor/code_editor.h | |
parent | c951421c996467dcb7106a33774410a7b5258690 (diff) | |
parent | bafbdc6cb2fa8a2ad225bb00692cdc77f7a4c383 (diff) | |
download | redot-engine-5b681dbe7f0ada367078ef4e5e4c349c3859c88d.tar.gz |
Merge pull request #84932 from timothyqiu/search-and-replace
Improve search/replace bar behavior
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index 87031b672c..64b13b9006 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -96,9 +96,9 @@ class FindReplaceBar : public HBoxContainer { void _get_search_from(int &r_line, int &r_col, bool p_is_searching_next = false); void _update_results_count(); - void _update_matches_label(); + void _update_matches_display(); - void _show_search(bool p_focus_replace = false, bool p_show_only = false); + void _show_search(bool p_with_replace, bool p_show_only); void _hide_bar(bool p_force_focus = false); void _editor_text_changed(); |