diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 15:12:47 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 15:12:47 +0200 |
| commit | 7cb52a676f3f3dbfb22a67b69810b6056e6ecc9d (patch) | |
| tree | 92e972a873251d77af94b5953ef07231d5a5b019 /editor/plugins/script_editor_plugin.h | |
| parent | 610a9bed1345c7336eb2dc5d969d7b75ac0067c2 (diff) | |
| parent | 3a1246c198ac819edaf0d3f0c52f2255af0c8977 (diff) | |
| download | redot-engine-7cb52a676f3f3dbfb22a67b69810b6056e6ecc9d.tar.gz | |
Merge pull request #63515 from KoBeWi/script_jumper
Store line change in script navigation history
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 f87cb0958c..de3ab3fd5a 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -472,12 +472,14 @@ class ScriptEditor : public PanelContainer { void _history_back(); bool waiting_update_names; + bool lock_history = false; void _help_class_open(const String &p_class); void _help_class_goto(const String &p_desc); bool _help_tab_goto(const String &p_name, const String &p_desc); void _update_history_arrows(); void _save_history(); + void _save_previous_state(Dictionary p_state); void _go_to_tab(int p_idx); void _update_history_pos(int p_new_pos); void _update_script_colors(); |
