diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-09 21:07:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 21:07:27 +0200 |
commit | 58c123511167cf5679d3bcf19f66efe8dbfd4db0 (patch) | |
tree | 7036664c66f25929bd4b580f4b730432ca3cf9a6 /editor/plugins/script_editor_plugin.h | |
parent | 4f54470c2ce81c6636e5152400d5c1a08ac8bbff (diff) | |
parent | da6aebeb4c6e36385a180644d8080ec580e3fadb (diff) |
Merge pull request #49265 from KoBeWi/keepfreplace_2_keepers_of_replace
Move FindReplaceBar out of CodeTextEditor
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r-- | editor/plugins/script_editor_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index 9ae63b7c4f..1d379059d4 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -162,6 +162,7 @@ public: virtual void set_tooltip_request_func(String p_method, Object *p_obj) = 0; virtual Control *get_edit_menu() = 0; virtual void clear_edit_menu() = 0; + virtual void set_find_replace_bar(FindReplaceBar *p_bar) = 0; virtual Control *get_base_editor() const = 0; @@ -270,6 +271,7 @@ class ScriptEditor : public PanelContainer { ConfirmationDialog *erase_tab_confirm; ScriptCreateDialog *script_create_dialog; Button *scripts_visible; + FindReplaceBar *find_replace_bar; String current_theme; |