Merge pull request #71485 from adamscott/history-local

Save history when goto script line in the text editor
This commit is contained in:
Rémi Verschelde 2023-01-16 09:25:39 +01:00
commit f639f5096e
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 0 deletions

View File

@ -439,6 +439,8 @@ void ScriptEditor::_goto_script_line(Ref<RefCounted> p_script, int p_line) {
} else if (current) {
current->goto_line(p_line, true);
}
_save_history();
}
}
}