diff options
author | Eric M <itsjusteza@gmail.com> | 2022-10-23 18:45:44 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2022-10-25 19:52:42 +1000 |
commit | d499071e5b448a11fb3e815c33ab55cd4c23b5c1 (patch) | |
tree | ff023d3d7aca34bbe459297376b58076dd3a9759 /editor/plugins/text_editor.h | |
parent | 4546986d21e862cd11d9d541f6e8347483fd7f69 (diff) | |
download | redot-engine-d499071e5b448a11fb3e815c33ab55cd4c23b5c1.tar.gz |
Set the shortcut context for the edit/search/goto menus to the ScriptEditor so that shortcuts continue to work when FindReplaceBar is focused.
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r-- | editor/plugins/text_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h index a7a640247f..486a0f2c23 100644 --- a/editor/plugins/text_editor.h +++ b/editor/plugins/text_editor.h @@ -111,7 +111,7 @@ public: virtual Ref<Texture2D> get_theme_icon() override; virtual Ref<Resource> get_edited_resource() const override; virtual void set_edited_resource(const Ref<Resource> &p_res) override; - virtual void enable_editor() override; + virtual void enable_editor(Control *p_shortcut_context = nullptr) override; virtual void reload_text() override; virtual void apply_code() override; virtual bool is_unsaved() override; |