Fix crash when closing a TextFile

(cherry picked from commit 54bca425b2)
This commit is contained in:
Paulb23 2020-07-16 15:50:23 +01:00 committed by Rémi Verschelde
parent 753ff1fad2
commit ca4fe82a7f
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ void ScriptEditor::_close_tab(int p_idx, bool p_save, bool p_history_back) {
Ref<Script> script = current->get_edited_resource();
if (p_save) {
// Do not try to save internal scripts
if (!(script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1)) {
if (!script.is_valid() || !(script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1)) {
_menu_option(FILE_SAVE);
}
}