Check for double-colon on open recent script.

This commit is contained in:
Ryan Stein 2018-09-08 22:26:05 -04:00
parent ffe158ae85
commit 1cdc04c9c4

View File

@ -504,6 +504,13 @@ void ScriptEditor::_open_recent_script(int p_idx) {
return;
}
// 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()) {
_help_class_open(path);
return;