Merge pull request #21886 from RyanStein/bugfix-15509
Check for double-colon on open recent script.
This commit is contained in:
commit
772b398ad8
|
@ -504,6 +504,13 @@ void ScriptEditor::_open_recent_script(int p_idx) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// if it's a path then its most likely a deleted file not help
|
// if it's a path then its most likely a deleted file not help
|
||||||
|
} else if (path.find("::") != -1) {
|
||||||
|
// built-in script
|
||||||
|
Ref<Script> script = ResourceLoader::load(path);
|
||||||
|
if (script.is_valid()) {
|
||||||
|
edit(script, true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
} else if (!path.is_resource_file()) {
|
} else if (!path.is_resource_file()) {
|
||||||
_help_class_open(path);
|
_help_class_open(path);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue