diff options
author | Emmanuel Barroga <emmanuelbarroga@gmail.com> | 2019-08-06 23:41:10 -0700 |
---|---|---|
committer | Emmanuel Barroga <emmanuelbarroga@gmail.com> | 2019-08-06 23:57:14 -0700 |
commit | 0d8c7c30a025e674567fafcef91ac86d784d536e (patch) | |
tree | 1324534c739e8dff73ea209469c0de83f7efc681 /editor/plugins/text_editor.h | |
parent | 52cfb5f5799af38e4aa543417a76999b732c3a54 (diff) | |
download | redot-engine-0d8c7c30a025e674567fafcef91ac86d784d536e.tar.gz |
Fix Find in Files Not Working Properly
When using the "Find in Files" option to search in non-script files (e.g. .tscn), the search does not work properly.
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r-- | editor/plugins/text_editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h index 3a330576ae..c0d4052646 100644 --- a/editor/plugins/text_editor.h +++ b/editor/plugins/text_editor.h @@ -131,6 +131,7 @@ public: virtual Vector<String> get_functions(); virtual void get_breakpoints(List<int> *p_breakpoints); virtual void goto_line(int p_line, bool p_with_error = false); + void goto_line_selection(int p_line, int p_begin, int p_end); virtual void set_executing_line(int p_line); virtual void clear_executing_line(); virtual void trim_trailing_whitespace(); |