mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
Fix crash when closing a TextFile
This commit is contained in:
parent
9e34ba4855
commit
54bca425b2
@ -701,7 +701,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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user