1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Display a count of matches when searching in the code editor

Fixes #14513
This commit is contained in:
Bojidar Marinov
2019-07-08 20:33:04 +03:00
parent 3bfffcc568
commit 862369f842
2 changed files with 42 additions and 1 deletions

View File

@@ -83,11 +83,13 @@ class FindReplaceBar : public HBoxContainer {
int result_line;
int result_col;
int results_count;
bool replace_all_mode;
bool preserve_cursor;
void _get_search_from(int &r_line, int &r_col);
void _update_results_count();
void _show_search();
void _hide_bar();