diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-05 08:30:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-05 08:30:49 +0200 |
commit | 121e1df55b813d944bab0319f70723d2b8783723 (patch) | |
tree | 051b30abe53e991e2c3593e8b64d0aeaba9a96b2 /editor/plugins/text_editor.h | |
parent | 2c94470dd1c15357acf261c3d7126a9a247d51c6 (diff) | |
parent | 14435ebcee2b0e6a90f9303771246fb2f9cf8777 (diff) | |
download | redot-engine-121e1df55b813d944bab0319f70723d2b8783723.tar.gz |
Merge pull request #66300 from KoBeWi/📝🧭
Split script navigation state and edit state
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 9ee6a39b2e..a7a640247f 100644 --- a/editor/plugins/text_editor.h +++ b/editor/plugins/text_editor.h @@ -117,6 +117,7 @@ public: virtual bool is_unsaved() override; virtual Variant get_edit_state() override; virtual void set_edit_state(const Variant &p_state) override; + virtual Variant get_navigation_state() override; virtual Vector<String> get_functions() override; virtual PackedInt32Array get_breakpoints() override; virtual void set_breakpoint(int p_line, bool p_enabled) override{}; |