Do not try to save internal scripts
Fixes #40175
(cherry picked from commit d6c979d91b
)
This commit is contained in:
parent
ec787f0134
commit
c55e68d311
|
@ -582,11 +582,14 @@ void ScriptEditor::_close_tab(int p_idx, bool p_save, bool p_history_back) {
|
||||||
|
|
||||||
ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
|
ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
|
||||||
if (current) {
|
if (current) {
|
||||||
|
Ref<Script> script = current->get_edited_resource();
|
||||||
if (p_save) {
|
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)) {
|
||||||
_menu_option(FILE_SAVE);
|
_menu_option(FILE_SAVE);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ref<Script> script = current->get_edited_resource();
|
|
||||||
if (script != NULL) {
|
if (script != NULL) {
|
||||||
previous_scripts.push_back(script->get_path());
|
previous_scripts.push_back(script->get_path());
|
||||||
notify_script_close(script);
|
notify_script_close(script);
|
||||||
|
|
Loading…
Reference in New Issue