You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Check for double-colon on open recent script.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user